*,
body {
  padding: 0;
  margin: 0;
}

:root {
  --primary: #0f397a;
  --primary2: #577bb3;
  --primary3: #0174b7;
  --secondary: #bcd2e7;
  --text: #201f24;
  --text2: #444;
  --grey: #f7f8f9;
  --grey2: #f1f5fc;
  --ast-global-color-0: #0f397a;
  --ast-global-color-1: #0174b7;
  --ast-global-color-2: #201f24;
  --ast-global-color-3: #f7f8f9;
  --ast-global-color-4: #f1f5fc;
  --ast-global-color-5: #fff;
  --ast-global-color-6: #bcd2e7;
  --ast-global-color-7: #111;
}

.data-containair {
  margin-left: 8%;
  margin-right: 8%;
}

.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.anchor-button {
  width: 100%;
  background-color: #1f68d5;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.header {
  height: 80px;
  background-color: var(--ast-global-color-5);
  z-index: 5;
  box-shadow: 0 0px 16px 0 rgba(169, 169, 169, 0.5);
  position: fixed;
  width: 100%;
}

.display-lg {
  display: block !important;
}

.nav-lx-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-containair {
  display: flex;
  align-items: center;
}

.nav-lx-display .logo-img {
  height: 50px;
  width: 50px;
}

.nav-lx-display .menu-item {
  display: flex;
  align-items: center;
}

.nav-lx-display .menu-item > a {
  line-height: 25px;
  font-size: 18px;
  color: var(--ast-global-color-2);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 28px;
  padding-right: 28px;
  text-decoration: none;
}

.nav-lx-display .menu-item > a:hover {
  color: var(--ast-global-color-1);
}

.hero-section {
  background-color: var(--ast-global-color-4);
  padding-top: 100px;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-text .heading1 {
  padding-top: 50px;
  font-size: 46px;
  line-height: 60px;
  font-weight: 700;
  color: var(--ast-global-color-7);
}

.header-text .heading2 {
  padding-top: 10px;
  font-size: 46px;
  line-height: 60px;
  font-weight: 700;
  color: var(--primary2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-text .heading2 img {
  width: 30px;
  height: 30px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.typewriter {
  color: var(--primary2);
  border-right: 1px solid var(--primary2);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  transition: opacity 0.5s ease-in-out;
}

@keyframes blinkCursor {
  50% {
    border-right-color: transparent;
  }
}
.hero-section .heading3 {
  padding-top: 20px;
  text-align: center;
  max-width: 900px;
  font-size: 18px;
  line-height: 32px;
}

.hero-image {
  height: 500px;
  max-width: 500px;
  margin-top: 30px;
  animation: floatUpDown 3s ease-in-out infinite alternate;
}

.language-carousal {
  margin-top: -50px;
}

.owl-carousel img {
  max-width: 150px;
  height: 150px;
  display: block;
  margin: auto;
}

.owl-carousel .owl-item {
  text-align: center;
}

@media screen and (max-width: 480px) {
  .header-text .heading1 {
    padding-top: 20px;
  }
  .hero-section {
    padding-top: 60px;
  }
  .header-text .heading1 {
    font-size: 25px;
  }
  .header-text .heading2 {
    font-size: 30px;
    line-height: 30px;
  }
  .header-text .heading2 img {
    width: 20px;
    height: 20px;
  }
  .hero-section .heading3 {
    padding: 20px;
    text-align: justify;
  }
  .hero-image {
    max-width: 350px;
    margin-top: 0px;
  }
  .owl-carousel img {
    max-width: 100px;
    height: 100px;
  }
}
.section2 {
  margin-top: 200px;
}

.section2 .box-make {
  display: flex;
  margin-top: 50px;
}

#section2-text > h1 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ast-global-color-1);
  margin-bottom: 40px;
}

#section2-text > p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: justify;
  max-width: 800px;
  margin: 20px auto;
  border-left: 5px solid #1E3A8A;
}

#section2-image > div {
  margin-top: 30px;
  animation: floatUpDown 3s ease-in-out infinite alternate;
}

#section2-image > div > img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .section2 {
    margin-top: 0px;
  }
  .section2 .box-make {
    display: flex;
    flex-direction: column;
  }
  #section2-text > h1 {
    text-align: justify;
    font-size: 30px;
    margin-bottom: 0px;
  }
}
.section3 {
  background-color: var(--ast-global-color-4);
  border-radius: 150px;
  margin-top: 200px;
  padding-bottom: 100px;
}

#section3-text {
  padding-top: 50px;
  text-align: center;
}

#section3-text > span {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

#section3-text > h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.3;
  color: var(--ast-global-color-1);
  text-transform: uppercase;
}

#section3-text > span:last-child {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

#section3-card {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: space-between;
}

/* Card Styling */
#section3-card .card {
  background: white;
  width: 25%;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Image Styling */
#section3-card .card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

/* Title */
#section3-card .card h2 {
  font-size: 22px;
  color: #222;
  margin: 10px 0;
}

/* Paragraph */
#section3-card .card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Hover Effect */
#section3-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 480px) {
  .section3 {
    border-radius: 50px;
    margin-top: 0px;
  }
  #section3-card {
    flex-direction: column;
  }
  #section3-card .card {
    width: 100%;
    padding: 2px;
  }
  #section3-card .card h2 {
    margin: 10px;
  }
  #section3-card .card p {
    margin: 10px;
    text-align: justify;
  }
}
.form-containair {
  margin-top: 200px;
  display: flex;
  justify-content: center;
}

/* Modal Container */
.modal {
  background: white;
  max-width: 900px;
  border-radius: 10px;
  display: flex;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Left Section */
.modal .left-section {
  background-color: #1f68d5;
  color: white;
  padding: 30px;
  flex: 1;
  text-align: center;
}

.modal .left-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal .left-section img {
  width: 100%;
  max-width: 250px;
  margin-top: 20px;
}

/* Right Section */
.modal .right-section {
  flex: 1;
  padding: 30px;
  position: relative;
}

/* Close Button */
.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Form Styling */
.modal form input,
.modal form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Submit Button */
.modal form button {
  width: 100%;
  background-color: #1f68d5;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.modal form button:hover {
  background-color: #1551a8;
}

@media screen and (max-width: 480px) {
  .form-containair {
    margin-top: 50px;
  }
  .modal {
    flex-direction: column;
  }
  .modal .left-section {
    padding: 20px 0px 0px 0px;
  }
  .modal .left-section h2 {
    font-size: 30px;
  }
  .modal .left-section p {
    font-size: 20px;
  }
  .modal form input,
  .modal form textarea {
    width: 90%;
  }
}
.section5 {
  background-color: var(--ast-global-color-4);
  margin-top: 200px;
  padding-bottom: 100px;
}

#section5-text {
  padding-top: 50px;
  text-align: center;
}

#section5-text > span {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

#section5-text > h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.3;
  color: var(--ast-global-color-1);
  text-transform: uppercase;
}

#section5-text > span:last-child {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

#section5-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 40px;
  margin-top: 50px;
}

#section5-card .card2 {
  display: flex;
}

#section5-card .card2 .image-holder {
  height: 100px;
  width: 100px;
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
}

#section5-card .card2 .image-holder img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

#section5-card .card2 .text-holder {
  padding-left: 20px;
  max-width: 400px;
}

#section5-card .card2 .text-holder h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#section5-card .card2 .text-holder span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  display: block;
  opacity: 0.9;
}

@media screen and (max-width: 480px) {
  .section5 {
    margin-top: 100px;
  }
  #section5-card .card2 {
    flex-direction: column;
  }
}
footer {
  background-color: #0A2A52;
  color: white;
  padding: 40px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  margin: 15px;
  min-width: 200px;
}

.footer-section.links {
  align-items: flex-end;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.5;
  width: 40%;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #1DA1F2;
}

.review-btn {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 14px;
}

.footer-copyright {
  font-size: 18px;
}

.footer-privacy {
  display: flex;
}

.footer-privacy a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin: 0 10px;
}

@media screen and (max-width: 480px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-section p {
    width: 100%;
    font-size: 18px;
    text-align: justify;
  }
  .footer-container {
    align-items: start;
  }
}
.display-sm {
  display: none !important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  #section3-card > div {
    width: 48%;
    /* 2 items per row for medium screens */
  }
}
@media screen and (max-width: 768px) {
  .data-containair {
    margin-left: 4%;
    margin-right: 4%;
  }
  .display-lg {
    display: none !important;
  }
  .display-sm {
    display: block !important;
  }
  .header {
    height: 50px;
    background-color: var(--ast-global-color-5);
    z-index: 5;
    box-shadow: 0 0px 16px 0 rgba(169, 169, 169, 0.5);
    position: fixed;
    width: 100%;
  }
  #section3-card {
    justify-content: center;
  }
  #section3-card > div {
    width: 100%;
    /* 1 item per row for small screens */
  }
}
.nav-sm-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 100%;
  padding: 0 15px;
}

.nav-sm-display .logo-img {
  height: 30px;
  width: 30px;
}

.nav-sm-display .sm-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
}

.hamburger {
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger div {
  width: 100%;
  height: 5px;
  background-color: #1E3A8A;
  border-radius: 5px;
}

.sm-header-text {
  margin-left: 10px;
  font-size: 20px;
  color: var(--ast-global-color-1);
}

/* Drawer (Sidebar) */
.drawer {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: var(--ast-global-color-5);
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
}

.drawer > div {
  height: 100px;
  background-color: var(--ast-global-color-1);
}

.drawer.open {
  left: 0;
  /* Slide in when open */
}

.drawer-header {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--ast-global-color-5);
  font-size: 24px;
  font-weight: 700;
}

.drawer-header > .logo-img {
  height: 70px;
  width: 70px;
  margin-right: 10px;
}

.drawer a {
  display: block;
  color: var(--ast-global-color-0);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 18px;
  border-top: 1px solid var(--ast-global-color-4);
  /* Add a top border */
}

.drawer a:hover {
  background-color: var(--ast-global-color-4);
}

/* Close Button */
.close-btn {
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: block;
  text-align: right;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.product-hero-section {
  padding-top: 100px;
  padding-bottom: 50px;
  background-color: #DCECF2;
}

.product-hero-flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.product-hero-text > h1 {
  font-size: 40px;
  line-height: 58px;
  font-weight: 700;
  margin-bottom: 22px;
}

.product-hero-text > h1 > span {
  color: var(--ast-global-color-1);
}

.product-hero-text > p {
  max-width: 600px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: capitalize;
  opacity: 0.8;
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
}

.benefit-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.checkmark {
  color: #007bff;
  font-size: 20px;
  font-weight: bold;
}

.product-hero-image .image-containair {
  max-width: 500px;
  height: 500px;
}

.product-section {
  background-color: var(--ast-global-color-0);
  margin: 100px;
  padding: 50px 50px;
}

.product-details {
  color: white;
  text-align: center;
  margin: 0;
  padding: 20px;
}

.product-details > h1 {
  font-size: 2.5em;
}

.product-details .subtitle {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.product-details .card {
  margin-bottom: 30px;
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.product-details .card img {
  max-width: 300px;
  height: 300px;
  margin-bottom: 15px;
}

.product-details .card h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.product-details .card h2 > span:first-child {
  color: #007bff;
}

.product-details .card h2 > span:last-child {
  color: #ffa500;
}

.product-details .card p {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: capitalize;
  opacity: 0.8;
  margin-bottom: 30px;
}

.product-details .card > div {
  display: flex;
  justify-content: center;
}

.product-details .card > div > a {
  text-decoration: none;
  width: 200px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .product-hero-flexbox {
    flex-direction: column;
  }
  .product-section {
    margin: 0px;
    padding: 0px;
  }
  .product-hero-text > h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.privacy-policy {
  padding-top: 100px;
}

.privacy-data {
  margin: 0% 10%;
}

.privacy-data > h2 {
  text-align: center;
  color: var(--ast-global-color-1);
}

.privacy-data > p {
  margin: 20px 0px;
  letter-spacing: 1px;
  font-size: 16px;
  opacity: 0.8;
}

.privacy-data .first-paragraph {
  padding-top: 20px;
  text-align: justify;
  color: var(--ast-global-color-7);
}

.privacy-data > h3 {
  margin-top: 30px;
  margin-bottom: 5px;
  color: var(--ast-global-color-1);
}/*# sourceMappingURL=style.css.map */