/* Exo Font CSS */

@font-face {
  font-family: "Exo-Regular";
  src: url("../fonts/Exo-2/Exo2-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo-Medium";
  src: url("../fonts/Exo-2/Exo2-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo-SemiBold";
  src: url("../fonts/Exo-2/Exo2-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo-Bold";
  src: url("../fonts/Exo-2/Exo2-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Titillium Font CSS */

@font-face {
  font-family: "Titillium-Regular";
  src: url("../fonts/Titillium-Web/TitilliumWeb-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium-SemiBold";
  src: url("../fonts/Titillium-Web/TitilliumWeb-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium-Bold";
  src: url("../fonts/Titillium-Web/TitilliumWeb-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Be-Vietnam-Pro Font CSS */

@font-face {
  font-family: "Be-Vietnam-Pro-Regular";
  src: url("../fonts/Be-Vietnam-Pro/BeVietnamPro-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be-Vietnam-Pro-Medium";
  src: url("../fonts/Be-Vietnam-Pro/BeVietnamPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be-Vietnam-Pro-SemiBold";
  src: url("../fonts/Be-Vietnam-Pro/BeVietnamPro-SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be-Vietnam-Pro-Bold";
  src: url("../fonts/Be-Vietnam-Pro/BeVietnamPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #005aa9;
  --white: #ffffff;
  --black: #000000;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Be-Vietnam-Pro-Regular";
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  max-width: 1344px;
  padding: 0 12px;
  margin: 0 auto;
}

section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.default-btn {
  position: relative;
  z-index: 1;
  font-family: "Titillium-Bold";
  background-color: var(--white);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--primary);
  cursor: pointer;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.default-btn:hover {
  color: var(--white);
}

.default-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0559a7 0%, #1ca8e5 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.default-btn:hover::after {
  opacity: 1;
}

.section-heading h2 {
  font-family: "Exo-Bold";
  color: #0047ad;
  font-size: 78px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.section-heading h3 {
  font-family: "Exo-Bold";
  color: var();
  font-size: 42px;
  margin-bottom: 20px;
}

/* Header CSS Start */
.header {
  /* position: fixed; */
  z-index: 9;
  width: 100%;
  padding: 25px 0;
  transition: all 0.3s ease-in-out;
}

/* .header.show {
    background: linear-gradient(90deg, var(--primary) 70.15%, #44c7f4 100%);
} */

.header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}

.header .header-box .image-box {
  max-width: 200px;
}

/* Header CSS End */

/* Banner CSS Start */
.banner {
  position: relative;
  /* padding-top: 120px; */
  height: 100dvh;
  background: linear-gradient(135deg, #0559a7 0%, #1ca8e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -107px;
}

.banner .banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  mix-blend-mode: soft-light;
  width: 100%;
  height: 100%;
}

.banner .banner-box {
  position: relative;
  z-index: 1;
}

.banner .banner-box img {
  max-width: 90%;
  margin: 0 auto 20px;
}

.banner .banner-box .section-heading h1 {
  font-family: "Titillium-Bold";
  font-size: 64px;
  color: var(--white);
  text-align: center;
}

.banner .banner-box .button-box {
  text-align: center;
  margin-top: 50px;
}

/* Banner CSS End */

/* About CSS Start */
.about .about-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about .about-box .text-box {
  width: calc(50% - 25px);
}

.about .about-box .text-box p {
  font-family: "Be-Vietnam-Pro-Medium";
  color: #292929;
  font-size: 18px;
  line-height: 42px;
}

.about .about-box .image-box {
  width: calc(50% - 25px);
}

/* About CSS End */

/* Specifications CSS Start */
.specifications .section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.specifications .specification-box .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.specifications .specification-box .row.row-1 {
  gap: 40px;
  margin-bottom: 50px;
}

.specifications .specification-box .row.row-2 {
  gap: 30px;
}

.specification-box .row .box {
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 0 10px;
}

.specification-box .row.row-1 .box {
  width: calc(25% - 30px);
}

.specification-box .row.row-2 .box {
  width: calc(20% - 24px);
}

.specification-box .row .box .image-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  overflow: hidden;
  height: 35%;
}

.specification-box .row .box .image-box::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  left: 50%;
  background: linear-gradient(135deg, #0559a7 0%, #1ca8e5 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: translate(-50%, -23%);
  z-index: -1;
}

.specification-box .row.row-2 .box .image-box::after {
  width: 150px;
  height: 150px;
}

.specification-box .row .box .image-box img {
  max-width: 40px;
  height: 40px;
  object-fit: contain;
}

.specification-box .row .box .text-box {
  padding: 15px 0;
  text-align: center;
  height: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.specification-box .row .box .text-box h4 {
  font-family: "Be-Vietnam-Pro-Bold";
  color: #292929;
  font-size: 22px;
  margin-bottom: 5px;
}

.specification-box .row .box .text-box h5 {
  font-family: "Exo-Bold";
  color: var(--black);
  font-size: 32px;
  margin-bottom: 5px;
}

.specification-box .row .box .text-box h6 {
  font-family: "Be-Vietnam-Pro-Medium";
  color: #8d8d8d;
  font-size: 16px;
}

/* Specifications CSS End */

/* Uses CSS Start */
.uses {
  background-color: #0559a7;
}

.uses .uses-box {
  display: flex;
}

.uses .uses-box .left-part,
.uses .uses-box .right-part {
  width: 25%;
  display: flex;
  align-items: center;
}

.uses .uses-box .middle-part {
  width: 50%;
}

.uses .uses-box .left-part .text-box,
.uses .uses-box .right-part .text-box {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.uses .uses-box .left-part .text-box h3,
.uses .uses-box .right-part .text-box h3 {
  font-family: "Be-Vietnam-Pro-Medium";
  font-size: 26px;
  color: var(--white);
  border-bottom: 1.5px solid var(--white);
  padding-bottom: 10px;
}

.uses .uses-box .right-part .text-box h3 {
  text-align: right;
}

/* Uses CSS End */

/* Contact CSS Start */
.contact::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #0559a7 0%, #1ca8e5 100%);
  z-index: -1;
}

.contact .contact-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact .contact-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.contact .contact-box .left-part {
  width: 60%;
}

.contact .contact-box .right-part {
  width: 40%;
}

.contact .section-heading h2 {
  color: var(--white);
}

.contact .section-heading p {
  font-family: "Be-Vietnam-Pro-Medium";
  font-size: 26px;
  color: var(--white);
  width: 70%;
}

.contact .form-box {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
}

.contact .form-box form .form-group {
  text-align: center;
}

.contact .form-box form .form-group:not(:last-child) {
  margin-bottom: 30px;
}

.contact .form-box form .form-group {
  position: relative;
}

.contact .form-box form input,
.contact .form-box form textarea {
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}

.contact .form-box form label {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #777;
  pointer-events: none;
  transition: 0.25s ease;
  background: var(--white);
  padding: 3px 10px;
}

.contact .form-box form textarea + label {
  top: 30px;
}

.contact .form-box form input:focus + label,
.contact .form-box form input:not(:placeholder-shown) + label,
.contact .form-box form textarea:focus + label,
.contact .form-box form textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 12px;
  color: var(--primary);
}

.contact .form-group button {
  position: relative;
  z-index: 1;
  font-family: "Titillium-Bold";
  width: 50%;
  font-size: 24px;
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact .form-group button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #0559a7 0%, #1ca8e5 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.contact .form-group button::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #1ca8e5 0%, #0559a7 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.contact .form-group button:hover::after {
  opacity: 1;
}

/* Contact CSS End */

/* Faq CSS Start */
.faq-section .section-heading h2 {
  text-align: center;
}

.faq-section .faq .faq-item {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 20px 30px;
}

.faq-section .faq .faq-item:not(:last-child) {
  margin-bottom: 15px;
}

.faq-section .faq .faq-item .faq-question {
  position: relative;
  padding-right: 50px;
}

.faq-section .faq .faq-item .faq-question::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  clip-path: polygon(50% 20%, 0% 100%, 100% 100%);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.faq-section .faq .faq-item .faq-question::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  clip-path: polygon(50% 80%, 0 0, 100% 0);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.faq-section .faq .faq-item .faq-question.active::before {
  opacity: 1;
}

.faq-section .faq .faq-item .faq-question.active::after {
  opacity: 0;
}

.faq-section .faq .faq-item h5 {
  font-family: "Be-Vietnam-Pro-SemiBold";
  color: var(--black);
  font-size: 24px;
  cursor: pointer;
}

.faq-section .faq .faq-item p {
  margin-top: 20px;
  font-size: 20px;
}

/* Faq CSS End */

/* Footer CSS Start */
.footer {
  padding-top: 100px;
  background-color: var(--primary);
}

.footer .footer-top {
  position: relative;
  display: flex;
  gap: 50px;
}

.footer .footer-top::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

.footer .footer-top .left-part,
.footer .footer-top .right-part {
  width: calc(50% - 25px);
}

.footer .right-part ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer .right-part ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer .right-part ul li p {
  display: flex;
  flex-direction: column;
}

.footer .right-part ul li:not(:last-child) img {
  margin-top: 3px;
}

.footer .right-part ul li img {
  min-width: 20px;
  width: 20px;
  height: 20px;
}

.footer .right-part ul li p span {
  font-family: "Exo-Bold";
  color: var(--white);
  font-size: 18px;
}

.footer .right-part ul li p span:not(:last-child) {
  margin-bottom: 10px;
}

.footer .footer-bottom {
  margin-top: 100px;
  padding-bottom: 20px;
}

.footer .footer-bottom p {
  color: var(--white);
  text-align: center;
}

.footer .enquire-box {
  background-color: var(--black);
  padding: 20px;
  text-align: center;
}

.footer .enquire-box a {
  font-family: "Exo-Bold";
  color: var(--white);
  text-transform: uppercase;
  font-size: 62px;
}

/* Footer CSS End */

.success-message {
  color: green;
  text-align: left;
  padding-top: 20px;
}

.error-message {
  color: #c51111;
  text-align: left;
  padding-top: 20px;
}


.error-text{
  position: absolute;
}