/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manufacturing+Consent&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Google Font */
  --quicksand: 'Quicksand', sans-serif;
  --poppins: 'Poppins', sans-serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --primary: #1be7e8;
  --primary-lighter: #1be7e826;
  --dark: #070120;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  color: var(--black);
  font-size: 16px;
  font-family: var(--poppins);
  font-weight: 400;
  line-height: normal;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Manufacturing Consent", system-ui;
  font-weight: 700;
}
section,
.section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a,
button {
  outline: none;
  box-shadow: none;
}
button {
  background: unset;
  padding: 0;
  border: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  border: none;
  box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

/* Resusable Component and CSS Start */
/* Resusable Component and CSS End */

/* Bootstrap Customized CSS Start */
.text-primary {
  color: var(--primary) !important;
}

.btn {
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  outline: none;
  padding: 14px 30px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-main {
  color: #fff;
  background: var(--primary);
}
.btn-main:hover {
  background-color: #009987;
  color: #fff;
}

.btn-gb {
  position: relative;
  z-index: 1;
  background-color: #1be7e8;
}
.btn-gb::after {
  position: absolute;
  left: -4px;
  top: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  content: '';
  z-index: -1;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #e0e0e0 0%, #1be7e8 100%);
}

/* animate-btn */
.gradient-border-btn {
  border: 4px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#1be7e8, #1be7e8),
    linear-gradient(90deg, #e0e0e0 0%, #1be7e8 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 200% 200%;
}
.gradient-border-btn:hover {
  animation: rotateBorder 2s linear infinite;
}

/* Animation keyframes */
@keyframes rotateBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* animate-btn--end */

/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */

.header--absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}
.header__logo a img {
  max-width: 178px;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-bar {
  font-size: 22px;
  background: var(--primary);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header {
  padding: 16px 0px;
}

.header__menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}
.header__menu.show {
  transform: translateX(0%);
}

span.header__menu-close {
  position: absolute;
  right: 12px;
  top: 20px;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header__menu > ul {
  flex-grow: 1;
  overflow-y: scroll;
  padding-top: 57px;
}

.header__menu ul li:last-child {
  display: none;
}

.header__menu ul li a {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eb6f191a;
  color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
}
.header__menu ul li:hover > a {
  color: var(--primary);
}

.header__menu ul li.has-submenu > a::after {
  position: absolute;
  right: 10px;
  top: 14px;

  content: '\EA4E';
  font-family: 'remixicon';
  font-size: 16px;
  color: var(--dark);
}
.header__menu ul li.has-submenu ul.submenu li a {
  padding-left: 20px;
}

.header__menu ul li.has-submenu ul.submenu li a {
  padding: 10px 10px;
  padding-left: 12px;
  border-bottom: none;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.header__menu ul li.has-submenu ul.submenu {
  display: flex;
  align-items: center;
}

.header__menu ul li.has-submenu ul.submenu li a span.text {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: flex;
  line-height: 1;
  align-items: center;
  gap: 4px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
}
.header__menu ul li.has-submenu ul.submenu li a span.img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.header__menu ul li.has-submenu ul.submenu li a span.img::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(
    179.86deg,
    rgba(0, 0, 0, 0) 0.13%,
    #000000 99.87%
  );
}
.header__menu ul li.has-submenu ul.submenu li a span.icon svg {
  max-width: 16px;
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */

.hero--section {
  background: #1c1a1d;
  padding: 124px 0px 42px;
}

.hero__content h1 {
  font-size: 36px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 11px;
}

.hero__content p {
  color: #ffffffcc;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.hero__content {
  margin-top: 100px;
  margin-bottom: 34px;
}
.hero__img-wrapper {
  position: relative;
  z-index: 1;
  max-width: 516px;
  margin: 0 auto;
}
.hero__img-wrapper::after {
  position: absolute;
  left: 6px;
  top: -6px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: var(--primary);
  z-index: -1;
  border-radius: 25px;
}
.hero__img-wrapper img {
  border-radius: 25px;
  max-width: 100%;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Service Block Section CSS Start */
/* =============================== */

.serviceBlock--section {
  background-color: var(--primary-lighter);
  padding: 40px 0px 40px;
}

.serviceBlock__content span.pretitle {
  color: #636363;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  line-height: 1;
  font-family: "Manufacturing Consent", system-ui;
}

.serviceBlock__content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.serviceBlock__content p {
  margin-bottom: 14px;
}

.serviceBlock__content {
  margin-bottom: 28px;
}

.sectionBlock__thumb-img__main {
  width: 80%;
  margin: 0 0 0 auto;
  display: block;
  border-radius: 20px;
}

.sectionBlock__thumb-img__subimg {
  max-width: 41%;
  position: absolute;
  bottom: 11px;
}

.sectionBlock__thumb-img {
  position: relative;
}

.sectionBlock__thumb-border {
  width: 100%;
  height: 255px;
  border: 2px solid #1be7e8;
  border-radius: 20px;
  position: absolute;
  bottom: -20px;
  right: 23%;
  z-index: -1;
}

.sectionBlock__thumb {
  position: relative;
}

.serviceBlock__object {
  right: 0;
  bottom: 35%;
  max-width: 200px;
  mix-blend-mode: color-burn;
}

/* =============================== */
/* :: 6.0 Service Block Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Photo Gallery Section CSS Start */
/* =============================== */

.gallery--section {
  padding: 40px 0px 40px;
}

.gallery__title {
  margin-bottom: 25px;
}

.gallery__title h2 {
  font-size: 30px;
}

.gallery__wrapper {
  margin-bottom: 24px;
}

.gallery__item img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

/* =============================== */
/* :: 7.0 Photo Gallery Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 ABout Section  CSS Start */
/* =============================== */

.about--section {
  padding: 40px 0px 40px;
  background-image: url('../imgs/about-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
.about__content {
  margin-bottom: 28px;
}
.about__content .pretitle {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: #fff;
  line-height: 1;
  font-family: var(--quicksand);
}
.about__content h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
}
.about__content p {
  color: #fff;
  margin-bottom: 14px;
}

/* =============================== */
/* :: 8.0 ABout Section  CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Contact Section CSS Start */
/* =============================== */

.contact--section {
  padding: 40px 0px 40px;
}
.contact__title {
  margin-bottom: 20px;
}
.contact__title h2 {
  font-size: 30px;
}

.inputBox {
  position: relative;
  margin-bottom: 14px;
}

.inputBox input {
  width: 100%;
  border-bottom: 1px solid #00000033;
  height: 44px;
}

.inputBox label {
  position: absolute;
  left: 0;
  top: 10px;
  transition: all 0.3s ease;
}

.inputBox input:focus {
  border-bottom: 1px solid #000;
}

.inputBox input:focus ~ label,
.inputBox input:valid ~ label {
  font-size: 10px;
  top: -2px;
}

.inputBox select {
  border-bottom: 1px solid #0003;
  border-radius: 0;
  padding: 0px;
  height: 44px;
}

.inputBox textarea {
  height: 70px;
  border-bottom: 1px solid #0003;
  width: 100%;
  resize: none;
  padding-top: 10px;
}

.inputBox textarea:focus {
  border-color: #000;
}

.inputBox textarea:valid ~ label,
.inputBox textarea:focus ~ label {
  top: -2px;
  font-size: 10px;
}

.contact__content {
  margin-bottom: 24px;
}

.contact__thumb img {
  max-width: 100%;
  border-radius: 22px;
}

/* =============================== */
/* :: 9.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Footer CSS Start */
/* =============================== */

.footer__top {
  background-color: #1b1b1b;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__copy {
  background-color: #1be7e8;
  padding: 12px 0px;
}
.footer__copy p {
  color: #000000;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
}
.footer__widget h4 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--poppins);
}

.footer__widget ul li a {
  display: flex;
  color: #fff;
  transition: all 0.3s ease;
  padding: 4px 0px;
  align-items: flex-start;
  gap: 10px;
}

.footer__widget ul li:hover a {
  color: var(--primary);
}

/* =============================== */
/* :: 10.0 Footer CSS End */
/* =============================== */

.social {
  padding-top: 20px;
}

.social a {
  margin-right: 5px;
  font-size: 2.0rem;
  color: #1be7e8;
}

.about__content h1 { font-family: var(--poppins); font-size: 1.5rem; }
.serviceBlock__content .pretitle { font-family: var(--poppins) !important; }