@charset "UTF-8";
@import "../fonts/poppins/stylesheet.css";
@import "../fonts/momo_display/stylesheet.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(249, 172, 48, 0.6117647059);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

header {
  flex-wrap: wrap;
  transition: 0.3s;
}
header #home-nav {
  background-color: transparent;
  position: absolute;
}
header nav {
  padding-top: 14px;
  z-index: 15;
  padding-bottom: 14px;
  align-items: center;
  background-color: #0c2463;
  width: 100%;
  transition: 0.3s;
}
header nav .container .media-menu {
  display: none;
}
header nav .container .navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
header nav .container .navigation .logo-container {
  width: 10%;
}
header nav .container .navigation .logo-container .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav .container .navigation ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header nav .container .navigation ul li {
  border-radius: 2px;
}
header nav .container .navigation ul li .odd {
  background-color: #0c2463;
  padding-top: 18px;
  padding-bottom: 18px;
  padding: 18px, 13px;
}
header nav .container .navigation ul li a {
  cursor: pointer;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
}
header nav .container .navigation ul li a:hover {
  color: rgb(189, 229, 255);
  transition: 0.3s;
}

.intro {
  padding: 162px 0;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/intro.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.intro .container .intro-text .text h1 {
  font-family: "Momo Trust Display", sans-serif;
  font-size: 86px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.intro .container .intro-text .text p {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 40px;
}
.intro .container .intro-text .text .intro-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: rgb(28, 92, 189);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.intro .container .intro-text .text .intro-btn:hover {
  background-color: #1a659e;
}

#about-page {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/about_bg.avif") center/cover no-repeat;
}
#about-page .container .about-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#about-page .container .about-content #left h3 {
  color: white;
}
#about-page .container .about-content #left p {
  color: white;
}

.about {
  padding: 162px 0;
  width: 100%;
}
.about .container .about-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.about .container .about-content #left {
  width: 55%;
}
.about .container .about-content #left h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
.about .container .about-content #left p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about .container .about-content #left .second {
  margin-bottom: 30px;
}
.about .container .about-content #left a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  padding: 16px 24px;
  background-color: #0c2463;
  border-radius: 40px;
}
.about .container .about-content #right {
  width: 40%;
  height: 100%;
}
.about .container .about-content #right img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  padding-bottom: 30px;
}

.certificate-page {
  min-height: 100vh;
}

.certificates {
  width: 100%;
  background-color: white;
  padding-top: 62px;
  padding-bottom: 162px;
}
.certificates .container {
  max-width: 1200px;
  margin: 0 auto;
}
.certificates .container .heading {
  display: flex;
  justify-content: center;
}
.certificates .container .heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 50px;
}
.certificates .container .certificates-btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.certificates .container .certificates-btn a {
  padding: 10px 20px;
  background-color: #0c2463;
  border-radius: 40px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-family: "Poppins", sans-serif;
  color: white;
  text-decoration: none;
}
.certificates .container .certificates-btn a:hover {
  background-color: #1a659e;
}
.certificates .container .cards {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.certificates .container .card {
  width: 23%;
  position: relative;
}
.certificates .container .card a {
  display: block;
  text-decoration: none;
}
.certificates .container .card a img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: pointer;
}
.certificates .container .card a span {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.certificates .container .card a span:hover {
  background-color: #0c2463;
  color: white;
  padding: 4px 15px;
  border-radius: 5px;
}

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.fullscreen-overlay.active {
  display: flex;
}
.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}
.fullscreen-overlay .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}
.fullscreen-overlay .close-button:hover {
  color: #0c2463;
}

.partners {
  flex-wrap: wrap;
  width: 100%;
  padding: 162px 0;
}
.partners .swiper-container {
  width: 100%;
}
.partners .swiper-container .heading {
  display: flex;
  justify-content: center;
}
.partners .swiper-container .heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 80px;
}
.partners .swiper-container .partners {
  flex-wrap: wrap;
  width: 100%;
}
.partners .swiper-container .partners .swiper-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partners .swiper-container .partners .swiper-wrapper .swiper-slide {
  height: 80px;
}
.partners .swiper-container .partners .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.products-section {
  width: 100%;
  background-color: white;
  padding: 162px 0;
}
.products-section .container .heading {
  display: flex;
  justify-content: center;
}
.products-section .container .heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 50px;
}
.products-section .container .products {
  width: 100%;
  align-items: center;
  margin-bottom: 30px;
}
.products-section .container .products h2 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 40px;
  color: #000;
  font-size: 26px;
  font-weight: 600;
}
.products-section .container .products .product-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 22px;
}
.products-section .container .products .product-card {
  padding: 20px 10px;
  width: 32%;
}
.products-section .container .products .product-card a {
  position: relative;
  width: 100%;
}
.products-section .container .products .product-card a img {
  width: 100%;
  height: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-section .container .products .product-card .info {
  width: 100%;
}
.products-section .container .products .product-card .info .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-section .container .products .product-card .info .see-more-btn {
  display: inline-block;
  background: #0056b3;
  color: white;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: auto;
}
.products-section .container .products .product-card .info .see-more-btn:hover {
  background: #1c6bc0;
}
.products-section .container .products .product-card .info h3 {
  margin: 16px 0;
}
.products-section .container .products .product-card .info h3 a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  color: black;
  transition: 0.3s;
}
.products-section .container .products .product-card .info h3 a:hover {
  color: #0c2463;
}
.products-section .container .products .product-card .info p {
  margin-bottom: 16px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #999999;
  line-height: 1.8;
}
.products-section .container .pagination {
  text-align: center;
}
.products-section .container .pagination .active {
  color: white;
  background: #33313b;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
}
.products-section .container .pagination a {
  color: #000;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  transition: 0.5s;
}
.products-section .container .pagination a:hover {
  color: white;
  background: #33313b;
}

.product-detail {
  padding-block: clamp(3rem, 3vw, 6rem);
  background: white;
}

.container-product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 50px;
  background: #fff;
  overflow: hidden;
}
.container-product #conditions {
  margin: 1rem 0;
  color: #333;
  line-height: 1.6;
}
.container-product h3 {
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #000;
  font-size: 26px;
  font-weight: 600;
}
.container-product #conditions li {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.container-product #conditions li:before {
  content: "•"; /* Real bullet */
  color: #007bff; /* Blue bullet */
  font-weight: bold;
  width: 1.5rem;
  text-align: center;
  margin-right: 5px;
}
.container-product #title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: start;
}
.container-product #img {
  width: 50%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.container-product #img:hover {
  transform: scale(1.02);
}
.container-product #excerpt {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.7;
  color: #444;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f5f7fa;
  border-left: 4px solid #007bff;
  border-radius: 0 8px 8px 0;
}

#info {
  padding: 112px 0;
}
#info .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#info .container .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  text-align: center;
}
#info .container .card .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c2463;
  border-radius: 50%;
  margin-bottom: 30px;
}
#info .container .card .icon i {
  text-align: center;
  font-size: 28px;
  color: white;
}
#info .container .card h3 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}
#info .container .card p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #999999;
  line-height: 1.8;
}
#info .container .card a {
  text-align: center;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.location {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.location .container {
  width: 100%;
}
.location .container iframe {
  width: 100%;
}

.banner {
  position: relative;
  width: 100%;
  height: 20vh;
  min-height: 300px;
  background: url("../images/banner.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}
.banner .banner-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-family: "Poppins", sans-serif;
}
.banner .banner-content p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin: 1rem 0 0;
  opacity: 0.9;
  font-family: "Open Sans", sans-serif;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects {
  min-height: 100vh;
}
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
}
.project-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.project-card .card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.project-card .card-overlay h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.project-card:hover {
  transform: translateY(-8px);
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card:hover .card-overlay {
  opacity: 1;
}

.project-detail {
  min-height: 100vh;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}
.project-detail h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 1rem;
}
.project-detail .desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox #lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.lightbox .close-lightbox {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox .close-lightbox img {
  width: 30px;
  filter: invert(1);
}

footer {
  flex-wrap: wrap;
  align-items: center;
  background-color: #0c2463;
  padding: 30px 0;
}
footer .container-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
footer h2 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
footer .content {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
footer .content .footer-logo {
  margin-top: 40px;
  width: 20%;
}
footer .content .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .content .pages {
  display: flex;
  flex-direction: column;
}
footer .content .pages a {
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgb(189, 229, 255);
  margin-bottom: 10px;
  text-align: left;
}
footer .content .contact {
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
footer .content .contact a {
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgb(189, 229, 255);
  margin-bottom: 10px;
  text-align: left;
}
footer .content .contact a i {
  margin-right: 10px;
}
footer .content .contact p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgb(189, 229, 255);
  margin-bottom: 10px;
  text-align: left;
}
footer .content .contact p i {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  header #home-nav {
    background-color: #0c2463;
  }
  header nav {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    transition: 0.4s;
    background-color: black;
  }
  header nav .container {
    width: 90%;
    display: flex;
    transition: 0.3;
  }
  header nav .container .media-menu {
    display: block;
    right: 20px;
    top: 32px;
  }
  header nav .container .media-menu .menu {
    cursor: pointer;
    display: flex;
    justify-content: right;
    align-items: center;
  }
  header nav .container .media-menu .menu i {
    font-size: 16px;
    color: white;
    margin-right: 8px;
  }
  header nav .container .media-menu .menu span {
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
  }
  header nav .container .navigation {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  header nav .container .navigation .navbar {
    display: none;
  }
  header nav .container .navigation .navbar ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: 0.4s;
  }
  header nav .container .navigation .navbar ul li {
    margin-top: 20px;
  }
  header nav .container .navigation .navbar ul li a {
    padding-left: 0;
  }
  .navbar.active {
    display: block !important;
  }
  nav.scroll {
    height: -moz-fit-content;
    height: fit-content;
  }
  .container {
    width: 73%;
    margin: 0 auto;
  }
  .intro {
    background-attachment: scroll;
  }
  .intro .content .container #intro h1 {
    font-size: 40px;
  }
  .intro .content .container #search {
    display: none;
  }
  #about-page .container .about-content {
    width: 100%;
    flex-direction: column;
  }
  #about-page .container .about-content #left {
    width: 100%;
  }
  #about-page .container .about-content #left #uppertext {
    width: 100%;
    flex-direction: column;
  }
  #about-page .container .about-content #left #uppertext .text {
    width: 100%;
  }
  #about-page .container .about-content #left #bottomtext {
    flex-direction: column;
  }
  #about-page .container .about-content #left #bottomtext .text {
    width: 100%;
  }
  #about-page .container .about-content #right {
    width: 100%;
    margin-bottom: 35px;
  }
  #about-page .container .about-content #right h2 {
    font-size: 28px;
  }
  .certificates .container .heading h2 {
    font-size: 28px;
  }
  .certificates .container .cards {
    flex-direction: column;
  }
  .certificates .container .cards .card {
    width: 90%;
    height: auto;
    margin-bottom: 15px;
  }
  .products-section .container .products .product-card {
    width: 100%;
  }
  #info .container {
    flex-direction: column;
  }
  #info .container .card {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .content {
    flex-direction: column;
    align-items: center;
  }
  footer .content .pages {
    width: 80%;
    margin-bottom: 30px;
  }
  footer .content .contact {
    width: 80%;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #title {
    text-align: center;
  }
  #excerpt {
    padding: 0.8rem;
    font-size: 1rem;
  }
  #conditions.conditions {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=home.css.map */