* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffff;
}

/* Tablets */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

/* Small tablets and large phones */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

/* Phones */
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

.fade-in-animation {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.fade-in-animation.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.left-slide-in-animation {
  transform: translateX(-300px);
  transition: transform 1s ease;
}

.left-slide-in-animation.show {
  transform: translateX(0px);
}

.right-slide-in-animation {
  transform: translateX(300px);
  transition: transform 1s ease;
}

.right-slide-in-animation.show {
  transform: translateX(0px);
}

/* Nav Bar  */

.nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.nav-header .header-strip {
  background: #183b6e;
  display: flex;
  justify-content: space-between;
  height: 2.5rem;
  align-items: center;
  padding: 0 0.75rem;
}

.nav-header .header-strip .left-side {
  display: flex;
  gap: 0.75rem;
}

.nav-header .header-strip .left-side a {
  text-decoration: none;
}

.nav-header .header-strip .right-side {
  display: flex;
  gap: 1rem;
}

.nav-header .header-strip .right-side .content {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-header .header-strip .right-side a {
  height: 2.5rem;
  border: none;
  color: #fff;
  font-weight: 700;
  padding-left: 1rem;
  border-left: 2px solid #4f689b;
  display: flex;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
}

.nav-bar-container {
  background-color: #fff;
  color: #000000;
  box-shadow: 0px 0px 47px -34px rgb(0 0 0);
  display: flex;
  justify-content: center;
  height: 100px;
  width: 100%;
}

.nav-bar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 3rem;
  width: 100%;
  padding: 1rem 4rem;
}

.nav-bar .logo {
  width: auto;
  height: 100%;
}

.nav-bar .search-container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-bar .search-container button {
  position: absolute;
  background-color: transparent;
  margin-left: 0.75rem;
  width: 1.2rem;
  height: 1.2rem;
  outline: none;
  border: 0;
}

.nav-bar .search-container svg {
  fill: #00000066;
  width: 1.2rem;
  height: 1.2rem;
}

.nav-bar .search-container input {
  width: 100%;
  max-width: 600px;
  background-color: #f0f0f0;
  padding: 12px 8px;
  padding-left: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  outline: 0;
  border: 0;
  border-radius: 100px;
  color: #000000a3;
}

.nav-bar .search-container input::placeholder {
  color: #00000066;
}

/* nav bar small screen*/
.nav-bar-sm-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00000024;
}

.nav-bar-sm {
  padding: 1rem;
  height: 100%;
  width: 200px;
  background-color: #ffffff;
  animation: nav-bar-sm 0.4s ease forwards;
}

@keyframes nav-bar-sm {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-bar-sm ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

.nav-bar-sm ul li {
  padding: 8px 12px;
}

.nav-bar-sm ul li a {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

.nav-bar-sm .nav-close-btn {
  display: flex;
}

.nav-bar-sm .nav-close-btn button {
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0 0 0 auto;
}

.nav-bar-open-btn-sm {
  display: none;
}

/* media query */
@media (min-width: 1500px) {
  .nav-bar {
    max-width: 1400px;
  }
}

@media (max-width: 800px) {
  .nav-bar ul {
    display: none;
  }

  .nav-bar-sm-container.show {
    display: block;
  }

  .nav-bar-open-btn-sm {
    display: block;
  }

  .nav-bar {
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-bar-container {
    height: 100px;
  }
}

@media (max-width: 550px) {
  .nav-header .header-strip {
    display: none;
  }
}

/* sec-1  */
.sec-1 {
  display: flex;
  width: 100%;
  margin-top: calc(100px + 2.5rem);
}

.sec-1-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-1-container .bread-crumb {
  font-weight: 400;
  color: #00000099;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.sec-1-container .bread-crumb a {
  font-weight: 400;
  color: #00000099;
  font-size: 1rem;
  text-decoration: none;
}

.sec-1-container .top-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #163a6e, #2a70d4);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  margin-bottom: 2rem;
}

.sec-1-container .top-bar .count {
  font-size: 0.75rem;
}

.sec-1-container .top-bar h2 {
  font-size: 1.2rem;
}

.sec-1-container .top-bar select {
  font-size: 0.75rem;
  border: none;
  outline: none;
  padding: 0.4rem;
  border-radius: 50px;
  min-width: 150px;

  /* Hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Add custom arrow */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
}

.sec-1-container .top-bar-sm {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #163a6e, #2a70d4);
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.sec-1-container .top-bar-sm .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-1-container .top-bar-sm .count {
  font-size: 0.75rem;
}

.sec-1-container .top-bar-sm h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.sec-1-container .top-bar-sm select {
  font-size: 0.75rem;
  border: none;
  outline: none;
  padding: 0.4rem;
  border-radius: 50px;
  min-width: 150px;

  /* Hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Add custom arrow */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
}

.sec-1-container .content-sec {
  display: flex;
  gap: 1rem;
}

/* grid  */
.sec-1-container .grid-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.sec-1-container.prd-lst .grid-item {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #0000004d;
  transition: transform 0.2s ease;
  text-decoration: none;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec-1-container .grid-item:hover {
  transform: translateY(-5px);
}

.sec-1-container .grid-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.sec-1-container .grid-item span {
  display: block;
  font-size: 1rem;
  color: #000000;
}

/* filter  */

.sec-1-container .filter-container {
  font-size: 1rem;
  width: 230px;
  min-width: 230px;
}

.sec-1-container .filter-container .accordion-item {
  margin-bottom: 1rem;
}

.sec-1-container .filter-container .accordion-header {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.sec-1-container .filter-container .accordion-header .arrow {
  font-size: 12px;
}

.sec-1-container .filter-container .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sec-1-container .filter-container .accordion-content.open {
  max-height: 500px;
  transition: max-height 0.4s ease;
  padding-top: 0.5rem;
}

.sec-1-container .filter-container .search-container {
  position: relative;
  margin: 0.5rem 0 1rem 0;
  display: flex;
  align-items: center;
}

.sec-1-container .filter-container .search-container svg {
  position: absolute;
  stroke: #a9a9a9;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

.sec-1-container .filter-container .search-input {
  width: 100%;
  padding: 0.6rem 0.8rem 0.6rem 1.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
}

.sec-1-container .filter-container .search-input:focus {
  outline: none;
}

.sec-1-container .filter-container label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  cursor: pointer;
  color: #333;
}

.sec-1-container .filter-container input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  background: #fff;
  cursor: pointer;
}

.sec-1-container .filter-container input[type="checkbox"]:checked {
  background-color: #f87171;
  border-color: #f87171;
}

.sec-1-container .filter-container input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 10px;
  color: white;
  position: absolute;
  left: 2px;
  top: 0px;
}

.sec-1-container .filter-container .count {
  margin-left: auto;
  color: #999;
  font-size: 12px;
}

.sec-1-container .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  margin: 2rem 0;
}

.sec-1-container .pagination .page {
  border: none;
  background: #f4f4f4;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #111;
  transition: background 0.3s ease;
}

.sec-1-container .pagination .arrow {
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  fill: #111;
  transition: background 0.3s ease;
}

.sec-1-container .pagination .page:hover {
  background: #e0e0e0;
}

.sec-1-container .pagination .page.active {
  background: #111;
  color: #fff;
  font-weight: bold;
}

.sec-1-container .pagination .dots {
  font-size: 18px;
  color: #666;
  pointer-events: none;
}

@media (max-width: 800px) {
  .sec-1 {
    margin-top: calc(100px + 2.5rem);
  }
}

@media (max-width: 650px) {
  .sec-1-container .top-bar {
    display: none;
  }

  .sec-1-container .top-bar-sm {
    display: block;
  }

  .sec-1-container .filter-container {
    font-size: 1rem;
    width: 150px;
    min-width: 150px;
  }
}

@media (max-width: 550px) {
  .sec-1 {
    margin-top: 100px;
  }
}

@media (max-width: 400px) {
  .sec-1 {
    margin-top: 100px;
  }

  .sec-1-container .content-sec {
    flex-direction: column;
  }

  .sec-1-container .filter-container {
    font-size: 1rem;
    width: 100%;
    min-width: 100%;
  }
}

/* sec-2  */
.sec-2 {
  display: flex;
  width: 100%;
}

.sec-2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-2-container h2 {
  margin-bottom: 1rem;
  color: #4d4d4d;
  font-weight: 600;
}

.sec-2-container .row-container {
  position: relative;
  margin: 0px 32px;
}

.sec-2-container .row-1 {
  display: flex;
}

.sec-2-container .row-1 img {
  display: inline-block;
  padding: 0 10px;
  max-height: 80px;
  height: 70px;
}

.sec-2-container .row-2 {
  display: flex;
  margin: 20px 0;
}

.sec-2-container .row-2 img {
  display: inline-block;
  padding: 0 10px;
  max-height: 80px;
  height: 70px;
  margin: 20px 0;
}

.sec-2-container .master-prev,
.sec-2-container .master-next {
  position: absolute;
  background: #ffffff;
  border: none;
  font-size: 20px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 30px;
  height: 30px;
  padding: 0px 0px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 5;
  border: 1px solid #717171;
}

.sec-2-container .master-prev {
  top: calc(50% - 15px);
  left: -30px;
}

.sec-2-container .master-next {
  top: calc(50% - 15px);
  right: -30px;
}

.sec-2-container .master-prev svg,
.sec-2-container .master-next svg {
  width: 12px;
  height: 12px;
  fill: #717171;
  margin: auto;
}

/* sec-3  */
.sec-3 {
  display: flex;
  width: 100%;
}

.sec-3-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-3-container h2 {
  color: #4d4d4d;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sec-3-container .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.sec-3-container .grid-item {
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #e8e8ea;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.sec-3-container .grid-item:hover {
  transform: translateY(-5px);
}

.sec-3-container .grid-item .hero-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.sec-3-container .grid-item button {
  background-color: #4b6bfb0d;
  color: #4b6bfb;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.sec-3-container .grid-item p {
  color: #181a2a;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

.sec-3-container .grid-item .person {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.sec-3-container .grid-item .person img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.sec-3-container .grid-item .person span {
  color: #97989f;
  font-size: 1rem;
}

@media (max-width: 500px) {
  .sec-3-container .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

/* footer  */
.footer {
  width: 100%;
  padding: 1rem;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #f0f0f0;
  display: flex;
  border-radius: 12px;
}

.footer-container .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  padding: 2rem 0rem;
}

.footer-container .logo {
  width: 300px;
  min-width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container .logo img {
  width: 200px;
  height: auto;
}

.footer-container .grid-container h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #323232;
}

.footer-container .grid-container .list {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  display: block;
  text-decoration: none;
  color: #323232;
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}

.footer-container .grid-container .list:hover {
  transform: translateX(5px);
}

.footer-container .grid-container p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  color: #323232;
}

.footer-container .grid-container .icon-container {
  display: flex;
  gap: 0.6rem;
}

.footer-container .grid-container .icon-container .icon {
  background-color: #323232;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.footer-container .grid-container .icon-container .icon:hover {
  transform: scale(1.1);
}

.footer-container .grid-container .icon-container .icon img {
  width: 1rem;
  height: 1rem;
}

.footer .copy-right {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  color: #00000099;
  font-weight: 400;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    padding: 3rem;
  }

  .footer-container .logo {
    width: 100%;
  }

  .footer-container .grid-container {
    text-align: center;
  }

  .footer-container .grid-container .icon-container {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .footer-container .logo {
    min-width: 100%;
  }

  .footer-container .logo img {
    width: 100%;
    height: auto;
  }

  .footer-container .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1.5rem;
  }
}
