@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;
  
}

/* Header */
header {
  background-color: #284b63;
  padding: 10px 10px 0px;
  text-align: center;
  height: 80px;
  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: 1400px;
  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;
  /* width: 75%; */
  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: bold;
  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: 95vw;
}
.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;
}




/* Hero Section */

.hero {
  display: flex;
  position: relative;
  z-index: 9;
}

.hero-detail {
  width: 85%;
  padding: 150px 30px 100px 50px;
  background-color: #fefbea;
}

.hero-main {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  position: relative;
  left: 10%;
}

.hero-main .part-a {
  width: 60%;
}

.hero-detail .part-b {
  position: relative;
  width: 40%;
  height: 400px;
}

.hero-main .part-a h2 {
  color: #284b63;
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  word-spacing: -15px;
  line-height: 110%;
  margin: 10px 0;
}

.hero-main .part-a h2 span {
  color: #3c6e71;
  font-size: clamp(1.9rem, 4.8vw, 5.7rem);
  font-weight: 900;
}

.hero-main .part-a p {
  color: gray;
  margin: 25px 0;
  max-width: 500px;
  font-family: "Roboto", sans-serif;
}

.hero-main .part-a .btn-s {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
}

.hero-main .part-a .btn-s button {
  background-color: #3c6e71;
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.5s ease;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}

.hero-main .part-a .btn-s button:hover {
  transform: scale(1.1);
}

.wave-container {
  position: relative;
  display: inline-block;
}

.wave-container i {
  font-size: 44px;
  color: #284b63;
}

.wave-container::before,
.wave-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 58, 138, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  animation: pulse-wave 2s infinite;
}

.wave-container::after {
  animation-delay: 1s;
}

@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* vido modal */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  width: 100vh;
  max-width: 900px;
}

.modal-content video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-main .part-a .btn-s span {
  color: #182f3f;
  font-weight: 600;
}

.hero-icons,
.arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0px;
}

.hero-icons .col-1 {
  position: relative;
}

.hero-icons .col-1 img {
  object-fit: cover;
  width: 190px;
  border-radius: 30px;
}

.hero-icons .col-1 i.arrow-left {
  color: white;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 40%;
  cursor: pointer;
}

.hero-icons .col-1 i.arrow-right {
  color: white;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 40%;
  cursor: pointer;
}

.hero-icons .col i {
  color: #182f3f;
  font-size: 25px;
  transition: transform 0.5s ease;
}

.hero-icons .col i:hover {
  color: #3c6e71;
  transform: scale(1.2);
}

.hero-icons .arrows .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgb(215, 213, 213);
  background-color: #fefcef;
  border-radius: 20px;
}

.hero-icons .col:hover {
  background-color: #dbe2d4;
}

.hero-icons>.arrows .col:first-of-type {
  background-color: #DBE2D4;
}

.hero-detail .part-b img.back-img {
  position: absolute;
  width: 90%;
  max-width: 550px;
  bottom: -25px;
  /* left: 80%; */
  transform: translateX(-90%) rotateZ(22deg);
  z-index: 1;
}

.hero-detail .part-b img.front-img {
  position: absolute;
  width: 70%;
  max-width: 400px;
  top: -45px;
  /* left: 80%; */
  transform: translateX(-100%);
  z-index: 2;
}

.hero-bg {
  width: 15%;
  background-color: #3c6e71;
}

/* Section-2 */

.section-2 {
  background-color: #284b63;
  color: #d5d9dc;
  padding: 80px 30px;
  text-align: center;
  border-radius: 50px;
  position: relative;
  top: -50px;
  z-index: 10;
}

.section-2-data {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.section-2-data .part-a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50%;
}

.section-2-data .part-a .vision,
.section-2-data .part-a .mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 20px 40px;
  background-color: #173346;
  border-radius: 30px;
  max-width: 220px;
}

.section-2-data .part-a .mission {
  background-color: #3c6e71;
}

.section-2-data .part-a .vision .icon,
.section-2-data .part-a .mission .icon {
  padding: 25px;
  background-color: #3c6e71;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
  top: -40px;
}

.section-2-data .part-a .vision .icon i,
.section-2-data .part-a .mission .icon i {
  width: 40px;
  height: 40px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-2-data .part-a .vision .icon:hover,
.section-2-data .part-a .mission .icon:hover {
  transform: scale(1.2);
}

.section-2-data .part-a .mission .icon {
  background-color: #173346;
}

.section-2-data .part-a .vision span,
.section-2-data .part-a .mission span {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.section-2-data .part-a .vision p,
.section-2-data .part-a .mission p {
  font-family: "Roboto", sans-serif;
}

.section-2-data .part-b {
  text-align: left;
  width: 50%;
}

.section-2-data .part-b h2 {
  font-size: clamp(1.4rem, 3.3vw, 3rem);
  font-weight: 800;
  line-height: 90%;
  color: white;
}

.section-2-data .part-b p {
  margin: 30px 0px;
  font-family: "Roboto", sans-serif;
}

/* seprator */
.separator {
  border-top: 5px dotted #3c6e71;
  margin: 15px 0;
}

.section-2-data .part-b .partners {
  display: flex;
  align-items: center;
  gap: 50px;
}

.section-2-data .part-b .partners h4 {
  font-size: 19px;
  text-wrap: nowrap;
}

.section-2-data .part-b .partners .partner-logo {
  display: flex;
  gap: 20px;
}

.section-2-data .part-b .partners .partner-logo img {
  width: 100%;
  object-fit: cover;
}

/* Section-3 */

.section-3 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 50px;
}

.section-3 .record {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.section-3 .record .icon {
  padding: 14px;
  border-radius: 50px;
  background-color: #3c6e71;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.section-3 .record .icon i {
  color: white;
  font-size: 35px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-3 .record .icon:hover {
  transform: scale(1.2);
}

.section-3 .record span {
  font-size: 50px;
  font-weight: 800;
  color: #284b63;
}

.section-3 .record p {
  color: gray;
  margin: 10px 0;
  font-family: "Roboto", sans-serif;
}

/* Section-4 */

.section-4 {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: white;
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
  z-index: 8;
}

.section-4 .part-a {
  width: 20%;
}

.section-4 .part-c {
  width: 25%;
}

.section-4 .part-b {
  width: 35%;
}

.section-4 .part-a h2 {
  font-size: clamp(1.9rem, 4.8vw, 2.8rem);
  font-weight: 800;
  color: #284b63;
  margin: 0;
}

.section-4 .part-a p {
  color: gray;
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
}

.section-4 .part-a button {
  background-color: #3c6e71;
  padding: 20px 40px;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 6px 0 3px 1px #0a131ae1;
  transition: transform 0.4s ease;
}

.section-4 .part-a button:hover {
  transform: scale(1.1);
}

.section-4 .part-b img {
  width: 100%;
}

.section-4 .part-c .quality,
.section-4 .part-c .support,
.section-4 .part-c .friendly {
  padding: 15px 10px;
  border-radius: 50px;
  background-color: #182f3f;
  color: white;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  /* max-width: 350px; */
}

.section-4 .part-c .quality .icon,
.section-4 .part-c .support .icon,
.section-4 .part-c .friendly .icon {
  background-color: #3c6e71;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.section-4 .part-c .quality .icon i,
.section-4 .part-c .support .icon i,
.section-4 .part-c .friendly .icon i {
  font-size: 35px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-4 .part-c .quality .icon:hover,
.section-4 .part-c .support .icon:hover,
.section-4 .part-c .friendly .icon:hover {
  transform: scale(1.1);
}

.section-4 .part-c .quality h4,
.section-4 .part-c .support h4,
.section-4 .part-c .friendly h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.section-4 .part-c .quality p,
.section-4 .part-c .support p,
.section-4 .part-c .friendly p {
  font-family: "Roboto", sans-serif;
  margin: 0;
  margin-top: 5px;
}

/* Section - 5 */
.section-5 {
  background-color: #284b63;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  top: -30px;
  z-index: 7;
}

.section-5-data {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section-5-data>h2 {
  /* font-size: 48px; */
  font-size: clamp(1.7rem, 4.8vw, 3rem);
  font-weight: 900;
  margin: 0;
  color: white;
}

.section-5-data>p {
  color: white;
  margin: 15px auto;
  max-width: 500px;
  font-family: "Roboto", sans-serif;
}

.services {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  padding: 20px;
}

.services>.part-a,
.services>.part-b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.services .Assembly,
.services .Packaging,
.services .Support,
.services .Service {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 12px;
  padding: 0 20px 40px;
  background-color: #173346;
  border-radius: 60px;
  max-width: 280px;
  box-sizing: border-box;
}

.services .Assembly .icon,
.services .Packaging .icon,
.services .Support .icon,
.services .Service .icon {
  padding: 25px;
  font-size: 40px;
  border-radius: 50px;
  color: white;
  width: 50px;
  height: 50px;
  margin: 20px 0;
  cursor: pointer;
  text-align: center;
  transition: transform 0.4s ease;
}

.services .Assembly .icon:hover,
.services .Packaging .icon:hover,
.services .Support .icon:hover,
.services .Service .icon:hover {
  transform: scale(1.2);
}

.services .Assembly span,
.services .Packaging span,
.services .Support span,
.services .Service span {
  font-weight: 800;
  font-size: 22px;
  color: white;
}

.services .Assembly p,
.services .Packaging p,
.services .Support p,
.services .Service p {
  color: white;
  font-family: "Roboto", sans-serif;
}

.services .Assembly a,
.services .Packaging a,
.services .Support a,
.services .Service a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: transform 0.4s ease;
  transform-origin: left center;

}

.services .Assembly a:hover,
.services .Packaging a:hover,
.services .Support a:hover,
.services .Service a:hover {
  transform: scale(1.1);
}

.services .Assembly {
  background-color: #fefbea;
}

.services .Assembly .icon {
  background-color: #173346 !important;
}

.services .Assembly span {
  color: #173346 !important;
}

.services .Assembly p {
  color: gray !important;
}

.services .Assembly a {
  color: #173346 !important;
}

.services .Packaging {
  background-color: #3c6e71;
}

.services .Packaging .icon {
  background-color: white;
  color: #173346 !important;
}

.services .Support {
  background-color: #173346;
}

.services .Support .icon {
  background-color: #3c6e71;
}

.services .Service {
  background-color: #647d8e;
}

.services .Service .icon {
  background-color: #173346;
}

/* Section - 7 */

.section-7 {
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  z-index: 7;
}

.section-7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/reviews-bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-radius: 50px;
}

.section-7::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4d807f;
  opacity: 0.9;
  z-index: -1;
  border-radius: 50px;
}

.section-7 h2 {
  font-size: clamp(1.6rem, 4.8vw, 3rem);

  font-weight: 800;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  line-height: 100%;
}

/* section-7 -container */
.section-7 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.container .card {
  background-color: #f9f7e7;
  border-radius: 20px;
  padding: 10px 30px 20px;
  text-align: center;
  margin-top: 70px;
  max-width: 370px;
  max-height: 270px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card .quote-icon {
  font-size: 100px;
  color: #0f3a4d;
  height: 80px;
}

.card p {
  color: gray;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.card .stars {
  color: #fec42d;
  margin-top: 20px;
  font-size: 22px;
}

.card .detail {
  position: relative;
  bottom: -5px;
}

.card .profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

.card .detail .name {
  margin-top: 10px;
  color: white;
  font-weight: 800;
}

/* Section - 8 */

.section-8 {
  display: flex;
  position: relative;
  top: -45px;
  z-index: 6;
}

.section-8-bg {
  width: 18%;
  background-color: #284b63;
}

.section-8-detail {
  width: 82%;
  padding: 150px 30px 150px 20px;
  background-color: #fefbea;
}



.section-8-main {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  left: -10%;
}

.section-8-detail .temp {
  background-color: white;
  width: max-content;
  border-radius: 50px;
  border: 1px solid rgb(219, 216, 216);
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 0;
  top: 15%;
  z-index: 3;
}

.section-8-detail .temp span {
  font-weight: 900;
  font-size: 24px;
  color: #284b6b;
}

.section-8-detail .temp p {
  color: gray;
  font-family: "Roboto", sans-serif;
  margin: 1px 0;
}

.section-8-detail .temp .icon {
  background-color: #0f3a4d;
  padding: 10px 5px 4px;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  text-align: center;
}

.section-8-detail .temp .icon i {
  color: white;
  font-size: 30px;
}

.section-8-main .part-a h2 {
  color: #284b63;
  font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  font-weight: 900;
  word-spacing: -5px;
  max-width: 450px;
}

.section-8-main .part-a .design,
.section-8-main .part-a .design-2 {
  display: flex;
  justify-content: space-between;
  background-color: #3c6e71;
  padding: 25px 40px;
  border-radius: 50px;
  max-height: 70px;
  max-width: 380px;
  margin: 40px 0 30px 0;
  position: relative;
}

.section-8-main .part-a .design-2 {
  background-color: #0f3a4d;
}

.design span,
.design-2 span {
  display: block;
  color: white;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 7px;
}

.design a,
.design-2 a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.design .image img,
.design-2 .image img {
  max-width: 150px;
  position: absolute;
  right: -10px;
  bottom: -20px;
}

.design-2 .image img {
  left: -15px;
}

.section-8-main .part-a .btn-s {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0px;
}

.section-8-main .part-a .btn-s>button {
  background-color: #3c6e71;
  color: white;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.5s ease;
  box-shadow: 6px 0 3px 1px #0a131ae1;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;

}

.section-8-main .part-a .btn-s button:hover {
  transform: scale(1.1);
}

.section-8-main .part-a .btn-s a {
  text-decoration: none;
  color: #182f3f;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.5s ease;
}

.section-8-main .part-a .btn-s a:hover {
  transform: scale(1.2);
}

.section-8-main .part-a .btn-s a i {
  color: #284b63;
}

.section-8-detail .part-b {
  position: relative;
  width: 50%;
  height: 400px;
}

.section-8-detail .part-b img.back-img {
  position: absolute;
  width: 70%;
  max-width: 500px;
  bottom: 0;
  left: 1%;
  transform: translateX(-50%) scale(1.3);
  z-index: 1;
}

.section-8-detail .part-b img.front-img {
  position: absolute;
  width: 90%;
  max-width: 500px;
  bottom: 0px;
  left: 1%;
  transform: translateX(-50%) scale(1.4);
  z-index: 2;
}

/* Section -9 */

.section-9 {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #3C6E71;
  padding: 40px;
  width: 70%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  top: -130px;
  z-index: 7;
}

.section-9>.part-a {
  width: 35%;
}

.section-9>.part-b {
  width: 65%;
}

.section-9>.part-b .process {
  width: 33%;
}

.section-9>.part-a>h2 {
  color: white;
  /* font-size: 48px; */
  font-size: clamp(1.6rem, 4.8vw, 2.8rem);

  font-weight: 900;
}

.section-9>.part-a>p {
  color: lightgray;
  margin: 20px 0;
  line-height: 160%;
  font-family: "Roboto", sans-serif;
}

.section-9>.part-a>button {
  padding: 20px 40px;
  background-color: #0f3a4d;
  color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.4s ease;
  font-size: 16px;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}

.section-9>.part-a>button:hover {
  transform: scale(1.1);
}

.section-9 .part-b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.section-9>.part-b .process .icon {
  padding: 15px;
  background-color: #fefbea;
  text-align: center;
  border-radius: 50px;
  width: 50px;
  height: 45px;
  transition: transform 0.4s ease;
}

.section-9 .part-b>i {
  color: white;
  font-size: 40px;
  position: relative;
  top: -90px;
}

.section-9 .part-b .process {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-9>.part-b .process .icon>i {
  color: white;
  font-size: 40px;
  color: #0f3a4d;
}

.section-9>.part-b .process>h3 {
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.section-9>.part-b .process>p {
  color: lightgray;
  font-size: 14px;
  line-height: 140%;
  font-family: "Roboto", sans-serif;
}

.section-9>.part-b .process .icon:hover {
  transform: scale(1.1);
}
/* 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 .links {
  cursor: pointer;
}

.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) {
  .hero-detail .part-b img.front-img {
    top: 0;
  }

  .section-4 .part-a h2 {
    font-size: clamp(1.9rem, 4.8vw, 2.1rem);
  }
  .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;
  }

  /* Heo Section */
  .hero-bg {
    width: 0%;
  }

  .hero-detail {
    width: 100%;
  }

  .hero-detail .part-b,
  .hero-main .part-a {
    width: 100%;
  }

  .hero-main {
    flex-direction: column-reverse;
    align-items: center;
    position: static;
  }

  .hero-detail .part-a {
    padding-top: 50px;
  }

  .hero-main .part-a h2 {
    width: max-content;
    margin: 10px auto;
    word-spacing: -5px;
  }

  .hero-main .part-a h2 span {
    display: block;
  }

  .hero-main .part-a p {
    margin: 25px auto;
    max-width: 85%;
    text-align: center;
  }

  .hero-main .part-a .btn-s {
    justify-content: center;

  }

  .hero-icons .col-1 img {
    width: 400px !important;
  }

  .hero-icons {
    justify-content: center;

  }

  .hero-icons .arrows .col {
    padding: 30px;
    gap: 150px;
    border-radius: 50px;

  }

  .hero-icons .arrows .col:first-of-type {
    background-color: #DBE2D4;
  }

  .hero-detail .part-b {
    max-height: 350px;
    top: -107px;
  }

  .hero-detail .part-b img.back-img {
    max-width: 400px;
    left: 31%;
    bottom: -135px;
    transform: translateX(-60%) rotateZ(26deg);

  }

  .hero-detail .part-b img.front-img {
    max-width: 300px;
    top: 50px;
    left: 34%;
    transform: translateX(-60%);

  }

  /* Section-2 */
  .section-2-data {
    gap: 20px;
  }

  .section-2-data .part-a .vision span,
  .section-2-data .part-a .mission span {
    font-size: 17px;
  }

  /* Section-4 */
  .section-4 .part-a,
  .section-4 .part-c {
    width: 30%;
  }

  .section-4 .part-b {
    width: 40%;
  }

  /* Section-5 */
  .services {
    flex-direction: column;
  }

  .services .Assembly,
  .services .Packaging,
  .services .Support,
  .services .Service {
    max-width: none;
    justify-content: center;
    align-items: center;
  }

  .section-8-detail .temp {
    display: none;
  }

  /* Section-8:hero like */
  .section-8-bg {
    width: 0%;
  }

  .section-8-detail {
    width: 100%;
  }

  .section-8-main {
    flex-direction: column;
    left: 0;
  }

  .section-8-detail .part-b {
    max-height: 450px;
    max-width: 450px;
    top: 0;
  }

  .section-8-detail .part-b img.back-img {
    width: 80%;
    transform: scale(1.1);
  }

  .section-8-detail .part-b img.front-img {
    width: 100%;
    transform: scale(1.2);
  }

  .section-8-main .part-a h2 {
    max-width: none;
  }

  .section-8-main .part-a .design,
  .section-8-main .part-a .design-2 {
    max-width: none;
  }

  /* Secion-9 */
  .section-9 {
    flex-direction: column;
    gap: 30px;
  }

  .section-9>.part-a {
    width: 100%;
    text-align: center;
  }

  .section-9>.part-b {
    width: 100%;
  }
  .section-10 .col-1,.section-10 .col-2 {
    width: 50%;
    max-width: none;
  }
}

@media screen and (max-width: 850px) {

  .hero-icons .col-1 img {
    width: 300px !important;
  }

  .hero-icons .arrows .col {
    padding: 20px;
    gap: 95px;

  }

  .hero-detail {
    padding: 150px 0 100px 0;
  }

  /* Section-2 */
  .section-2-data {
    flex-direction: column-reverse;

  }

  .section-2-data .part-a {
    width: 100%;
  }

  .section-2-data .part-b {
    width: 100%;
    text-align: center;
  }

  .section-2-data .part-b .partners {
    flex-direction: column;
    gap: 0;
  }

  .section-2-data .part-b .partners .partner-logo>div {
    width: 33%;
  }

  .section-2-data .part-a {
    flex-direction: column;
    gap: 50px;
  }

  .section-2-data .part-a .vision,
  .section-2-data .part-a .mission {
    max-width: none;
    width: 90%;
    margin-top: 30px;
  }

  .section-3 {
    padding: 10px;
    gap: 0;
  }

  .section-4 {
    flex-direction: column;
  }

  .section-4 .part-a,
  .section-4 .part-c {
    width: 100%;
    text-align: center;
  }

  .section-4 .part-b {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
  }

  .section-4 .part-c {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .section-4 .part-c .quality,
  .section-4 .part-c .support,
  .section-4 .part-c .friendly {
    padding: 15px 10px;
    border-radius: 50px;
    flex-direction: column;
    max-width: 220px;
    min-height: 200px;
  }

  .section-7 .container {
    flex-wrap: wrap;
  }

  .card .detail {
    bottom: -20px;
  }

  .container .card {
    padding: 10px;
  }

  .section-9 {
    padding: 20px;
  }

  .section-9 .part-b .process {
    padding: 0;
  }

  .section-9>.part-b .process>h3 {
    font-size: 18px;
  }
  .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) {
  .hero-main .part-a h2 {
    word-spacing: -10px;
  }

  header {
    height: 120px;
  }

  .hero-icons .col-1 img {
    width: 200px !important;
  }

  .hero-icons .arrows .col {
    padding: 20px;
    gap: 55px;
  }

  .hero-detail .part-b img.back-img {
    left: 23%;

  }

  .hero-detail .part-b img.front-img {
    left: 30%;

  }


  .section-2 {
    padding: 100px 20px;
  }


  .section-2-data .part-b {
    padding-left: 0;
  }

  .section-4 {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .section-4 .part-a,
  .section-4 .part-c {
    width: 100%;
  }

  .section-4 .part-a h2 {
    max-width: 100%;
  }

  .section-4 .part-b {
    width: 100%;
  }

  .section-4 .part-b img {
    max-width: 400px;
  }

  .section-4 .part-c {
    flex-wrap: wrap;
  }

  .services>.part-a,
  .services>.part-b {
    flex-direction: column;
  }

  .section-7 .container {
    flex-direction: column;
  }

  .section-8-detail {
    padding-top: 0;
  }

  .section-8-detail .part-b {
    height: 350px;
    width: 350px;
  }


  .section-9 .part-b {
    flex-direction: column;
  }

  .section-9>.part-b .process {
    width: 100%;
  }

  .section-9 .part-b>i {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .hero-detail .part-b img.back-img {
    left: 15%;
    max-width: 350px;
  }

  .hero-detail .part-b img.front-img {
    left: 22%;
  }
}

@media screen and (max-width: 450px) {
  header nav img {
    width: 100px;
  }
  .responsive-menu-links {
    width: 90vw;
  }

  .hero-main .part-a h2 {
    word-spacing: 0px;
  }

  .hero-detail .part-b {
    top: -57px;
    width: 90%;
  }

  .hero-detail .part-a {
    padding-top: 0;
  }

  .hero-detail .part-b img.back-img {
    left: 7%;
    bottom: -50px;
  }

  .hero-main .part-a p {
    font-size: 16px;
  }

  .hero-main .part-a .btn-s {
    flex-direction: column;
  }

  .hero-icons {
    flex-direction: column;
  }

  .hero-icons .col {
    gap: 15px;
  }

  .hero-detail {
    padding: 100px 0;
  }


  .section-2-data .part-b h2 {
    line-height: 110%;
  }

  .section-2-data .part-b p {
    font-size: 15px;
    margin: 10px 0px;
  }

  .section-2-data .part-b .partners h4 {
    font-size: 15px;
  }

  .section-2-data .part-a .vision span,
  .section-2-data .part-a .mission span {
    font-size: 28px;
  }

  .section-2-data .part-a .vision p,
  .section-2-data .part-a .mission p {
    font-size: 16px;
  }

  .section-3 {
    flex-direction: column;
  }

  .section-3 .record span {
    font-size: 40px;
  }

  .section-3 .record .icon i {
    font-size: 30px;
  }

  .section-3 .record .icon {
    padding: 6px;
  }

  .section-4 {
    padding: 30px 20px;
  }

  .section-4 .part-a p {
    font-size: 16px;
  }

  .section-4 .part-c .quality h4,
  .section-4 .part-c .support h4,
  .section-4 .part-c .friendly h4 {
    font-size: 18px;
  }

  .section-4 .part-c {
    flex-direction: column;
  }

  .section-5-data>p {
    font-size: 16px;
  }

  .services {
    padding: 0;
  }

  .services .Assembly .icon,
  .services .Packaging .icon,
  .services .Support .icon,
  .services .Service .icon {
    padding: 15px 6px;
    width: 70px;
  }

  .services .Assembly span,
  .services .Packaging span,
  .services .Support span,
  .services .Service span {
    font-size: 22px;
  }

  .services .Assembly p,
  .services .Packaging p,
  .services .Support p,
  .services .Service p {
    font-size: 18px;
  }

  .services .Assembly a,
  .services .Packaging a,
  .services .Support a,
  .services .Service a {
    font-size: 16px;
  }

  .container-2 {
    padding: 0;
  }

  .container-2 .header .icon .badge {
    font-size: 18px;
  }

  .section-8-detail .part-b {
    height: 250px;
    width: 250px;
  }


  .section-8-main .part-a .design,
  .section-8-main .part-a .design-2 {
    padding: 10px 20px;
    max-height: 50px;
    max-width: 380px;
    margin: 29px 0 30px 0;
  }

  .section-8-main .part-a .btn-s button {
    padding: 15px 25px;
    font-size: 12px;
  }


  .design .image img,
  .design-2 .image img {
    max-width: 130px;
  }

  .design span,
  .design-2 span {
    font-size: 18px;
  }

  .design a,
  .design-2 a {
    font-size: 14px;
  }


  .section-9 {
    padding: 20px;
  }

  .section-9>.part-b .process>h3 {
    font-size: 20px;
  }
  .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;
  }
}


/* ----------------- */
/* ----------------- */
/*      Animation    */
/* ----------------- */
/* ----------------- */

/* Initial State */

.hero-main .part-a h2,
.hero-main .part-a p,
.hero-main .part-a .btn-s,
.hero-icons>.col-1,
.hero-icons .arrows .col-1,
.hero-icons .arrows .col-2,
.hero-icons .arrows .col-3,
.hero-main .part-b .back-img,
.hero-main .part-b .front-img,

.section-2-data .part-a .mission,
.section-2-data .part-a .vision,
.section-2-data .part-b h2,
.section-2-data .part-b p,
.section-2-data .part-b .separator,
.section-2-data .part-b .partners,

.section-3 .experience,
.section-3 .customers,
.section-3 .projects,

.section-4 .part-a h2,
.section-4 .part-a p,
.section-4 .part-a button,
.section-4 .part-b,
.section-4 .part-c .quality,
.section-4 .part-c .support,
.section-4 .part-c .friendly,

.section-5-data h2,
.section-5-data p,
.section-5-data .services .part-a .Assembly,
.section-5-data .services .part-a .Packaging,
.section-5-data .services .part-b .Support,
.section-5-data .services .part-b .Service,

.section-8-main .part-b .back-img,
.section-8-main .part-b .front-img,
.section-8-main .part-a h2,
.section-8-main .part-a .design,
.section-8-main .part-a .design-2,
.section-8-main .part-a .separator,
.section-8-main .part-a .btn-s {
  opacity: 0;
  transform: translateY(-30px);
}


.section-7 h2,
.section-7 .container .card-1,
.section-7 .container .card-2,
.section-7 .container .card-3,

.section-9 .part-a,
.section-9 .part-b .p-1,
.section-9 .part-b .p-2,
.section-9 .part-b .p-3 {
  opacity: 0;
  transform: translateX(-30px);
}


/* KeyFrames */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-main .part-a h2 {
  animation: fadeIn 2s ease 0.2s forwards;
}

.hero-main .part-a p {
  animation: fadeIn 2s ease 0.4s forwards;
}

.hero-main .part-a .btn-s {
  animation: fadeIn 2s ease 0.6s forwards;
}

.hero-icons>.col-1 {
  animation: fadeIn 2s ease 0.8s forwards;
}

.hero-icons .arrows .col-1 {
  animation: fadeIn 2s ease 1s forwards;
}

.hero-icons .arrows .col-2 {
  animation: fadeIn 2s ease 1.2s forwards;
}

.hero-icons .arrows .col-3 {
  animation: fadeIn 2s ease 1.4s forwards;
}

.hero-main .part-b .back-img {
  animation: fadeIn 2s ease 1.6s forwards;
}

.hero-main .part-b .front-img {
  animation: fadeIn 2s ease 1.8s forwards;
}

/*  */
.section-2-data .part-a .vision {
  animation: fadeIn 2s ease 0.2s forwards;
}

.section-2-data .part-a .mission {
  animation: fadeIn 2s ease 0.4s forwards;
}

.section-2-data .part-b h2 {
  animation: fadeIn 2s ease 0.6s forwards;
}

.section-2-data .part-b p {
  animation: fadeIn 2s ease 0.9s forwards;
}

.section-2-data .part-b .separator {
  animation: fadeIn 2s ease 0.12s forwards;
}

.section-2-data .part-b .partners {
  animation: fadeIn 2s ease 0.19s forwards;
}

/*  */
.section-3 .experience {
  animation: fadeIn 2s ease 0.2s forwards;
}

.section-3 .customers {
  animation: fadeIn 2s ease 0.4s forwards;
}

.section-3 .projects {
  animation: fadeIn 2s ease 0.6s forwards;
}

/*  */
.section-4 .part-a h2 {
  animation: fadeIn 2s ease 0.2s forwards;
}

.section-4 .part-a p {
  animation: fadeIn 2s ease 0.4s forwards;
}

.section-4 .part-a button {
  animation: fadeIn 2s ease 0.6s forwards;
}

.section-4 .part-b {
  animation: fadeIn 2s ease 0.8s forwards;
}

.section-4 .part-c .quality {
  animation: fadeIn 2s ease 1s forwards;
}

.section-4 .part-c .support {
  animation: fadeIn 2s ease 1.2s forwards;
}

.section-4 .part-c .friendly {
  animation: fadeIn 2s ease 1.4s forwards;
}

/*  */
.section-5-data h2 {
  animation: fadeIn 2s ease 0.2s forwards;
}

.section-5-data p {
  animation: fadeIn 2s ease 0.4s forwards;
}

.section-5-data .services .part-a .Assembly {
  animation: fadeIn 2s ease 0.8s forwards;
}

.section-5-data .services .part-a .Packaging {
  animation: fadeIn 2s ease 1.2s forwards;
}

.section-5-data .services .part-b .Support {
  animation: fadeIn 2s ease 1.6s forwards;
}

.section-5-data .services .part-b .Service {
  animation: fadeIn 2s ease 2s forwards;
}

/*  */
.section-7 h2 {
  animation: fadeIn 2s ease 0.2s forwards;
}

.section-7 .container .card-1 {
  animation: slideIn 2s ease 0.6s forwards;
}

.section-7 .container .card-2 {
  animation: slideIn 2s ease 0.8s forwards;
}

.section-7 .container .card-3 {
  animation: slideIn 2s ease 1.2s forwards;
}

/*  */
.section-8-main .part-b .back-img {
  animation: fadeIn 2s ease 0.2s forwards;
}

.section-8-main .part-b .front-img {
  animation: fadeIn 2s ease 0.4s forwards;
}

.section-8-main .part-a h2 {
  animation: fadeIn 2s ease 0.6s forwards;
}

.section-8-main .part-a .design {
  animation: fadeIn 2s ease 0.8s forwards;
}

.section-8-main .part-a .design-2 {
  animation: fadeIn 2s ease 1s forwards;
}

.section-8-main .part-a .separator {
  animation: fadeIn 2s ease 1.2s forwards;
}

.section-8-main .part-a .btn-s {
  animation: fadeIn 2s ease 1.4s forwards;
}

/*  */
.section-9 .part-a {
  animation: slideIn 2s ease 0.3s forwards;

}

.section-9 .part-b .p-1 {
  animation: slideIn 2s ease 0.6s forwards;

}

.section-9 .part-b .p-2 {
  animation: slideIn 2s ease 0.9s forwards;

}

.section-9 .part-b .p-3 {
  animation: slideIn 2s ease 1.2s forwards;

}