:root {
  --max-width: 1200px;
  --gap: 1rem;
  --color-white: #fff;
  --color-light: #3c2cda;
  --color-dark: #07125e;
  --mansory-gap: 13px;
  --color-orange: #f4ae52;
  --color-black: #151505;
  --font-body: "Rethink Sans", sans-serif;
  --font-heading: "Rethink Sans", sans-serif;
  /*--gradient: linear-gradient(95.67deg, #fcab72 1.98%, #934b40 154.7%);*/
  /* --dark-bg: #405659; */
}

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

body {
  font-family: var(--font-body);
  color: #171717;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: var(--font-heading);
}

h1 {
  font-size: 28px;
  /* line-height: 1.5; */
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-3I {
  padding-bottom: 30px !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.direction-column {
  flex-direction: column;
}

.row-reverse .row {
  flex-direction: row-reverse;
}

.w-full {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.grid-span-2 {
  grid-column: span 2;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-7 {
  grid-column: span 7;
}

.gap-0 {
  gap: 0px;
}

.gap-y-0 {
  row-gap: 0px;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.gap-3 {
  gap: 30px;
}

.gap-4 {
  gap: 40px;
}

.gap-5 {
  gap: 50px;
}

.gap-x-2 {
  column-gap: 20px;
}

.gap-y-5 {
  row-gap: 50px;
}

.gap-6 {
  gap: 6rem;
}

.gap-7 {
  gap: 7rem;
}

.gap-8 {
  gap: 8rem;
}

.gap-9 {
  gap: 9rem;
}

.gap-10 {
  gap: 10rem;
}

.image-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.align-center {
  align-items: center;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

h4 {
  /* color: #2b2a29; */
}

.section-border-top {
  border-top: 1px solid #bebebe;
}

.unstyled-button {
  font-weight: 500;
  color: #ff0102;
}

.unstyled-button.white {
  color: #fff;
}

.section-padding {
  padding: 3.8rem 0;
}

.narrow-container {
  padding-inline: 6rem;
}

.section-padding-bottom {
  padding-bottom: 3.8rem;
}

.button-container {
  /* margin-top: 30px; */
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.button {
  background-color: #0363b2;
  color: #fff;
  padding: 12px 30px 15px;
  border-radius: 30px;
  display: inline-block;
  align-items: center;
  gap: 13px;
  transition: 0.3s;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  outline: none;
  border: none;
}

.button:hover {
  background-color: #171717;
  color: #fff;
}

.button.white {
  background-color: #fff;
  color: #171717;
}

.button.white:hover {
  background-color: #052d93;
  color: #fff;
}

.button.unstyled {
  padding: 0;
  color: #0363b2;
  background: transparent !important;
  display: flex;
  gap: 7px;
}

.cover-link {
  position: absolute;
  inset: 0;
}

.cover-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

header .logo {
  display: flex;
  width: 75px;
  padding-block: 7px;
}

header {
  position: relative;
  z-index: 99;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 20px 2px #0000001f;
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

header .logo img {
  width: 100%;
}

.navigation .navigation-list .nav-btn {
  font-weight: 400;
}

.topbar {
  background-color: #ddf8fe;
  /* color: #fff; */
  text-align: center;
  padding: 7px 0;
  font-size: 15px;
}

.top-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.top-nav-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-icon {
  display: flex;
}

.navbar .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  width: 130px;
  background-color: #ecfbfe;
  box-shadow: 0px 2px 4px #0000002e;
  padding: 5px 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  top: 100%;
}

ul.submenu li a {
  display: block;
  padding: 7px 15px;
  font-size: 14px;
  transition: 0.2s;
}

ul.submenu li a:hover {
    background-color: #1C2E4A;
    color: #fff;
}

ul.submenu {
  list-style: none;
}

.navigation .navigation-list li {
  padding: 28px 0;
}

.navigation .navigation-list li.dropdown:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-left: 3px;
}

.navigation .navigation-list ul.submenu li {
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.hamburg-icon .line {
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  background-color: var(--color-dark);
  border-radius: 5px;
  transition: 0.3s;
}

.hamburg-icon.open .line:first-child {
  transform: rotate(45deg) translate(5px, -2px);
}

.hamburg-icon.open .line:nth-child(2) {
  opacity: 0;
}

.hamburg-icon.open .line:last-child {
  transform: rotate(-46deg) translate(10px, -3px);
}

.hamburg-icon .line:last-child {
  margin: 0;
}

.hamburg-icon {
  display: none;
}

.main-banner .container,
.home-slider .container {
  position: absolute;
  color: #fff;
  /* font-weight: 700; */
  width: 100%;
  margin-inline: auto;
  margin-left: calc((100vw - (var(--max-width))) / 2);
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
}

.home-banner-section {
  position: relative;
  /* height: 85vh; */
  overflow: hidden;
}

.home-banner-section .banner-image {
  display: flex;
  width: 100%;
}

.home-banner-section .banner-image video,
.home-banner-section .banner-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
}

.home-banner .banner-content {
  width: 60%;
  /* padding: 6rem 20px 5rem 4.3rem; */
  /* background-color: #272727; */
  color: #fff;
}

.home-banner .banner-content .button {
  display: inline-block;
  margin-top: 10px;
}

.home-banner .banner-content p {
  padding: 10px 0 25px;
  font-size: 18px;
}

.home-banner {
  background-color: #000;
}

.main-banner .banner-content {
  width: 70%;
}

.swiper .swiper-pagination-bullet {
  border: 1.5px solid #ddf8fe;
  opacity: 0.6;
  background: #d3f6fd;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  transition: 0.3s;
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  background-color: #ddf8fe;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  border-color: #0072bb;
  background-color: #0072bb;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #171717;
  font-weight: 700;
}

.section-head p {
  color: #4a4a4a;
  font-weight: 500;
  font-size: 17px;
}

.section-content {
  padding-top: 15px;
}

.section-content h3 {
  font-size: 28px;
}

.section-head {
  padding-bottom: 20px;
}

footer {
  /* background-color: var(--color-light); */
  padding: 60px 0px 0;
  /* color: #fff; */
}

.footer-navigation-wrapper {
  width: calc(65% - 70px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-row {
  gap: 85px;
  margin-bottom: 45px;
}

footer .footer-row .footer-logo img {
  border-radius: 8px;
  mix-blend-mode: darken;
}

footer .footer-row .footer-map-locator a {
  display: flex;
  gap: 5px;
  text-decoration: underline;
  font-size: 13px;
  color: #bbc4cb;
  text-underline-offset: 2px;
}

footer .footer-row .footer-logo {
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: calc(35% - 15px);
}

.footer-col-navigation h3 {
  margin-bottom: 17px;
  font-size: 19px;
  font-weight: 700;
  color: #0363b2;
}

footer .navigation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.footer-copyright {
  width: 100%;
  font-family: var(--font-heading);
  background-color: #ddf8fe;
  padding: 20px 0;
}

footer .footer-row-navigation {
  padding: 40px 0px;
}

.main-banner-section {
  height: 55vh;
}

.main-banner-section .container {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.main-banner {
  height: 100%;
}

.row-reverse .about-image {
  padding-left: 0;
  padding-right: 77px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-bottom: 1px solid #bebebe;
  margin-bottom: 20px;
}

.category-grids-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  display: none;
}

.product-grid {
  background-color: #ddf8fe;
  padding: 20px 30px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 15px;
  align-items: center;
}

.product-grid .image {
  width: calc(40% - 20px);
  display: flex;
  align-items: center;
  background-color: #fff;
  justify-content: center;
  border-radius: 12px;
}

.product-grid .content {
  width: 60%;
}

.category-tabs .filter.active:after {
  content: "";
  background-color: #ff0102;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.category-tabs .filter {
  position: relative;
  padding: 7px 0 7px 7px;
  font-size: 15px;
  cursor: pointer;
}

.tab-content.category-grids-row.active {
  display: grid;
}

.solutions-section {
  background-color: #367ccc;
  color: #fff;
}

.solutions-section .section-head h2 {
  color: #fff;
}

.solutions-accordion-container {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
  gap: 14px;
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  font-size: 20px;
}

.solutions-section .content {
  padding: 45px 70px;
}

.solutions-section .content .accordion-label h4 {
  color: #fff;
}

.accordion-content {
  display: none;
}

.accordion-label .arrow {
  display: flex;
}

.accordion-label .arrow svg {
  height: 8px;
  width: 11px;
  transition: 0.3s;
}

.accordion.active .accordion-label .arrow svg {
  transform: rotate(180deg);
}

.insight-grid .content {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insight-grid .image {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.insight-grid .content .date {
  color: #888;
  font-size: 14px;
}

.insight-grid .content h4 {
  font-size: 18px;
  height: 86px;
  padding-right: 20px;
  color: inherit;
}

.inner-banner {
  position: relative;
  overflow: hidden;
  height: 70vh;
  max-height: 450px;
  display: flex;
  align-items: center;
}

.inner-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner-banner .banner-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.inner-banner .banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
  padding-block: 2rem;
}

.inner-banner .banner-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.3;
}

.why-choose-grid {
  background-color: #f6f6f6;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s;
}

.why-choose-grid .icon svg {
  height: 65px;
}

.why-choose-grid:hover .icon svg {
  fill: #fff;
  -webkit-text-stroke-color: #fff;
}

.why-choose-grid:hover .icon svg path,
.why-choose-grid:hover .icon svg circle {
  fill: inherit;
}

.why-choose-grid:hover {
  background-color: #367ccc;
  color: #fff;
}

.why-choose-grid:hover .icon svg path[fill="white"] {
  fill: #367ccc;
}

.mission-inner {
  position: relative;
  color: #fff;
}

.mission-inner .section-content {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.mission-inner .row {
  max-width: 70%;
  justify-content: center;
  margin-inline: auto;
}

.mission-inner .row h3 {
  width: 58%;
}

.mission-inner .row h3:first-child {
  width: 25%;
  color: #4991e3;
}

.solutions-page-section .insight-grid .content {
  padding: 0 17px 15px;
  gap: 10px;
  justify-content: space-between;
  height: calc(100% - 210px);
}

.solutions-page-section .insight-grid {
  border-radius: 10px;
  transition: 0.3s;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.solutions-page-section .insight-grid:hover {
  background-color: #367ccc;
  color: #fff;
}

.solutions-page-section .insight-grid:hover .content .unstyled-button {
  color: inherit;
}

.solutions-page-section .insight-grid:hover .date {
  color: inherit;
}

.solutions-page-section .insight-grid h4 {
  height: auto;
}

.solutions-page-section .insight-grid p {
  font-size: 15px;
}

.solutions-page-section .insight-grid .image {
  height: 190px;
}

.solutions-page-section .insight-grid .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.solutions-page-section .insight-grid .content > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selectbox select {
  padding: 12px 20px;
  min-width: 260px;
  border-radius: 10px;
  border: 1px solid #c3c3c3;
  background-color: #f6f6f6;
  font-size: 15px;
  color: inherit;
}

.products-page-section .product-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.products-page-section .product-grid {
  text-align: center;
}

.product-detail-section {
  position: relative;
  background-color: #367ccc;
  color: #fff;
}

.product-image-slider-wrapper {
  position: relative;
  width: 40%;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
}

.product-details-wrapper {
  width: 60%;
  padding-left: 5rem;
}

.product-details-wrapper h2 {
  color: inherit;
}

.product-details-wrapper .section-head {
  padding-bottom: 0;
}

.product-details-wrapper .section-content {
  padding-top: 0;
}

.how-to-use-step {
  text-align: center;
  position: relative;
}

.how-to-use-steps-wrapper {
  position: relative;
}

.steps-line {
  height: 1.5px;
  width: 76%;
  position: absolute;
  top: 70px;
  border: 1.5px dashed #888888;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon {
  display: inline-flex;
  width: 140px;
  height: 140px;
  background-color: #052d93;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 20px solid #fff;
}

.step-content {
  padding-inline: 30px;
  font-weight: 500;
}

.blogs-main-wrapper {
  position: relative;
  background-color: #367ccc;
  color: #fff;
  max-height: 450px;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}

.blogs-image-wrapper .image {
  display: flex;
}

.blogs-image-wrapper .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blogs-content-wrapper {
  padding: 20px 50px 60px;
  position: relative;
}

.blogs-content-wrapper .insight-grid p {
  color: #b8cce2;
}

.blogs-content-wrapper .insight-grid .date {
  color: inherit;
}

.blogs-content-wrapper .insight-grid .content h4 {
  font-size: 25px;
  height: auto;
  padding-right: 0;
}

.blogs-content-wrapper .insight-grid .content {
  gap: 20px;
}
.blogs-content-wrapper .swiper-pagination {
  text-align: left;
  padding-left: 46px;
  bottom: 13px;
}

.blogs-content-wrapper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

.blogs-title-content {
  position: relative;
  /* margin-top: -9rem; */
  /* background-color: #fff; */
  /* padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; */
  /* text-align: center; */
  /* gap: 14px; */
  /* box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15); */
  /* border-radius: 10px; */
  margin-block: 20px;
}

.blogs-title-content .date {
  font-size: 17px;
  color: #5c5c5c;
  font-weight: 500;
}

.share-blog-div {
  /* display: flex; */
  /* justify-content: center; */
  align-items: center;
  margin-top: 30px;
}

.share-icons ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.share-icons ul li img {
  width: 34px;
}

.share-icons ul li a {
  display: flex;
}

.blogs-title-content h1 {
  max-width: 80%;
  margin-inline: auto;
}

.share-blog-div .label {
  color: #232536;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blogs-detail-content-section .section-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blogs-detail-content-section .section-content * {
  font-family: inherit;
  margin: 0;
  padding: 0;
}

.blogs-detail-content-section .section-content img {
  margin: 20px 0;
}

.blogs-detail-banner-section .image img {
  width: 100%;
  aspect-ratio: 620 / 291;
  object-fit: cover;
  border-radius: 15px;
}

.inquiry-grids {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.phone-email .label {
  color: #535353;
}

.phone-email a {
  font-weight: 500;
  font-size: 18px;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 265px;
}

.form {
  background-color: #f6f6f6;
  padding: 30px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(7.5px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-control {
  padding: 15px;
  font-size: 14px;
  background-color: #fff;
  border: none;
  border-bottom: 0.3px solid #bbbbbb;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: inherit;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-button {
  margin: 20px 0 20px;
}

.form-button .button {
  /* padding-inline: 50px; */
  width: fit-content;
}

.contact-page-section .content {
  display: flex;
  flex-direction: column;
}

.button.dark {
  background-color: #000;
}

.container.extend {
  max-width: 1320px;
}

.enterprise-section {
  background-color: var(--color-light);
  color: #fff;
}

.enterprise-cards-area {
  padding-top: 5rem;
}

.enterprise-cards-area .enterprise-card {
  position: relative;
  background-color: var(--color-dark);
  transition: 0.3s;
}

.enterprise-cards-area .enterprise-card h3 {
  font-size: 24px;
  padding-right: 30px;
  margin-bottom: 15px;
}

.enterprise-cards-area .enterprise-card p {
  /* margin-bottom: 30px; */
  min-height: 130px;
}

.enterprise-cards-area .enterprise-card .button {
  position: absolute;
  bottom: 30px;
  left: 20px;
  padding: 0;
  width: 65px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 20%);
}

.enterprise-cards-area .enterprise-card .content {
  padding: 30px;
  transition: 0.3s;
}

.enterprise-cards-area .enterprise-card .side-image {
  max-width: 80%;
  border-radius: 0 5px 0 0;
  overflow: hidden;
  transition: 0.3s;
  opacity: 0;
  display: flex;
}

.enterprise-cards-area .enterprise-card:hover .side-image {
  opacity: 1;
}

.enterprise-cards-area .enterprise-card:hover .content {
  color: var(--color-light);
}

.enterprise-cards-area .enterprise-card:hover {
  background-color: #fff;
}

.navigation-progress-area {
  position: relative;
  margin: 30px 0;
  display: flex;
  gap: 60px;
  align-items: center;
}

.navigation-progress-area .progressbar {
  width: 70%;
  position: relative;
}

.navigation-progress-area .navigation {
  /* width: 30%; */
  display: flex;
  gap: 12px;
  position: relative;
  top: 1px;
}

.navigation-progress-area
  .enterprise-pagination
  .swiper-pagination-progressbar-fill {
  height: 8px;
  background-color: #fff;
  top: -2px;
}

.navigation-progress-area .progressbar .enterprise-pagination {
  height: 6px;
}

.navigation-progress-area .navigation .navigation-button {
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
}

.navigation-progress-area
  .navigation
  .navigation-button.swiper-button-disabled {
  opacity: 0.2;
}

.projects-section {
  background-color: #eeeff4;
  color: var(--color-dark);
}

.projects-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}

.projects-card .image {
  display: flex;
}

.projects-card .content {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 34%;
  background-color: var(--color-dark);
  padding: 15px 20px 20px;
  color: #fff;
  border-radius: 5px;
  transform: translateY(-50%);
}

.projects-card .content h3 {
  font-size: 42px;
  margin-bottom: 50px;
}

.projects-card .content p {
  margin-bottom: 20px;
}

.button.outline {
  background-color: transparent;
  border: 2px solid #fff;
}

.navigation-button {
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
}

.projects-navigation .navigation-button,
.projects-section .navigation-button {
  background-color: #fff;
  border: 1px solid #5f1ebe;
}

.projects-navigation .navigation,
.projects-section .navigation {
  display: flex;
  gap: 10px;
}

.projects-page-section .projects-navigation {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.projects-section .button-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-cards-area {
  margin-top: 5rem;
}

.projects-section .section-head p {
  margin-bottom: 10px;
  margin-top: 10px;
}

.projects-section .slider-thumb-content {
  text-align: center;
  background-color: #fff;
  height: 100%;
}

p {
  /* line-height: 1.6; */
}

.projects-card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.projects-slider-thumbs .swiper-slide {
  height: auto;
  opacity: 0.5;
  cursor: pointer;
}

.projects-section .slider-thumb-content .image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-section .slider-thumb-content {
  padding: 10px;
}

.projects-section .swiper-slide-thumb-active {
  opacity: 1;
}

.projects-section .progress-line-outer {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #737373;
}

.projects-section .progress-line-outer .progress-line {
  background-color: var(--color-light);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
}

.reviews-section {
  background-color: #eeeff4;
}

.reviews-cards-area {
  max-width: 59%;
  margin-inline: auto;
}

.reviews-card {
  background-color: #fff;
  padding: 20px 40px 30px;
}

.reviews-card .content {
  margin-bottom: 30px;
  font-size: 18px;
}

.reviews-card .content p {
  line-height: initial;
}

.reviews-card .side-image {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 20px;
}

.reviews-section .reviews-pagination {
  height: 5px;
  background-color: #fff;
}

.reviews-section .reviews-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--color-light);
}

.reviews-section .section-head {
  color: var(--color-dark);
  margin-bottom: 30px;
}

.insights-section {
  background-color: var(--color-dark);
  color: #fff;
}

.insights-cards-area {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.insights-cards-area .insights-main-grid {
  width: 56%;
}

.insights-cards-area .insights-grid .image {
  display: flex;
  border-radius: 10px;
}

.insights-cards-area .insights-grid .image img {
  width: 100%;
  border-radius: 5px;
}

.insights-lisiting-home {
  width: calc(44% - 20px);
  border-left: 1px solid #cbcbcb;
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
}

.insights-lisiting-home .insights-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding-left: 38px;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 26px;
}

.insights-lisiting-home .insights-grid .image {
  width: 35%;
}

.insights-lisiting-home .insights-grid .insights-content {
  width: calc(65% - 15px);
}

.insights-lisiting-home .insights-grid-banner {
  padding-left: 38px;
}

.insights-content h4 {
  font-size: 18px;
}

.insights-content p {
  font-size: 14px;
  margin-block: 7px;
}

.insights-cards-area .insights-main-grid .insights-content {
  padding-top: 15px;
}

.insights-content .date {
  font-size: 12px;
  font-weight: 600;
  color: #c1c1c1;
}

footer .connect-with-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

footer .connect-with-head h2 {
  font-size: 32px;
}

.form-control::placeholder {
  color: #5c5c5c;
}

.footer-navigation-wrapper .footer-col-navigation {
  width: 27%;
}

.footer-navigation-wrapper .footer-col-navigation.contact-form {
  width: calc(73% - 10px);
}

.footer-contact-form > .row:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.footer-contact-form > .row:last-child {
  flex-direction: row;
  flex-wrap: initial;
  gap: 20px;
  align-items: flex-end;
}

.footer-contact-form > .row:last-child .form-group:first-child {
  width: 100%;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects-page-section {
}

.projects-page-section .projects-cards-area {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.projects-page-tabs-container {
  background-color: #eeeff4;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* gap: 5px; */
  width: calc(40% - 25px);
}

.projects-page-tabs-container .projects-page-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: 0.3s;
  border-radius: 10px;
  font-weight: 600;
  padding: 14px;
  cursor: pointer;
  align-items: center;
}

.projects-page-tabs-container .projects-page-tab.active {
  background-color: var(--color-light);
  color: #fff;
}

.projects-page-tabs-container .projects-page-tab .icon {
  height: 24px;
  transition: 0.3s;
  opacity: 0;
}

.projects-page-tabs-container .projects-page-tab.active .icon {
  opacity: 1;
}

.projects-page-section .projects-cards-area .projects-slider-container {
  width: 60%;
}

.projects-page-section .projects-card .content {
  bottom: 0;
  top: initial;
  transform: initial;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-page-section .projects-slider {
  height: 100%;
}

.projects-page-section .projects-card {
  height: 100%;
}

.projects-page-section .projects-card .image {
  height: 100%;
}

.projects-page-section .projects-card .content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: var(--font-body);
}

.projects-page-section .projects-card .content .text {
  width: 70%;
}

.portfolio-card .image img {
  aspect-ratio: 10 / 8.5;
  object-fit: cover;
  width: 100%;
}

.portfolio-slider {
  padding-top: 40px;
  padding-bottom: 20px;
}

.portfolio-slider .swiper-slide-next .portfolio-card {
  transform: scale(0.85);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.portfolio-card {
  position: relative;
  transition: 0.3s;
  border-radius: 7px;
  overflow: hidden;
}

.portfolio-card .content {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 25px;
  text-align: center;
  width: 100%;
}

.portfolio-slider .swiper-slide-next .portfolio-card .content {
  opacity: 0;
}

.portfolio-card .image:before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  position: absolute;
  inset: 0;
}

.portfolio-card .image {
  position: relative;
  display: flex;
}

.portfolio-slider .swiper-slide {
  opacity: 0;
  transition: 0.4s;
}

.portfolio-slider .swiper-slide-visible {
  opacity: 1;
}

.portfolio-container {
  /* margin-top: 30px; */
}

.printing-portfolio-section {
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}

.printing-portfolio-section .container,
.printing-portfolio-section .portfolio-container {
  position: relative;
  z-index: 1;
}

.printing-portfolio-section.portfolio-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0.8;
}

.portfolio-card .content-hover {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 10px;
  margin: 10px;
  background-color: rgb(255 255 255 / 70%);
  border-radius: 10px;
  transition: 0.3s;
  opacity: 0;
  width: calc(100% - 20px);
}

.portfolio-card .content-hover:not(p) h3 {
  margin-bottom: 5px;
}

.portfolio-card .content-hover h3 {
  font-size: 17px;
}

.portfolio-card .content-hover p {
  font-size: 15px;
  margin-bottom: 9px;
  line-height: 1.4;
  margin-top: 4px;
}

.portfolio-card .content-hover .button {
  padding: 9px 15px 10px;
  font-size: 14px;
}

.portfolio-slider .swiper-slide-next .portfolio-card .content-hover {
  opacity: 1;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slider-arrows .swiper-button-disabled {
  opacity: 0.5;
  cursor: initial;
}

.slider-arrows > div {
  cursor: pointer;
  display: flex;
  background-color: #0363b2;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid transparent;
}

.slider-arrows > div svg path {
  stroke: #fff;
}

.saturn-glance-section {
  position: relative;
  background-color: #ebfbfe;
}

.glance-content-area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.stats-grid {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.stats-grid h3 {
  color: #1c2e4a;
  font-weight: 900;
  font-size: 25px;
}

.stats-grid .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  height: 45px;
}

.stats-grid .text {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  min-height: 67px;
  display: flex;
  align-items: center;
}

.our-ink-section {
  background-color: #ebfbfe;
}

.tabs-container {
  margin-top: 40px;
}

.tabs {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
}

.tabs .tabs-inner {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #fff;
  padding: 10px;
  border-radius: 40px;
  font-weight: 600;
}

.tabs .tabs-inner li {
  padding: 15px;
  transition: 0.3s;
  border-radius: 40px;
  cursor: pointer;
}

.tabs .tabs-inner li.active {
  background-color: #0363b2;
  color: #fff;
}

.technology-card {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  transition: 0.3s;
  gap: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 160px;
}

.technology-card h3 {
  font-size: 23px;
  font-weight: 600;
}

.technology-card:hover {
  background-color: #1c2e4a;
  color: #fff;
  gap: 13px;
}

.technology-card p {
  font-size: 14px;
  height: 0px;
  overflow: hidden;
  transition: 0.3s height;
}

.technology-card:hover p {
  height: 56px;
}

.why-saturn-section {
  background-color: #1c2e4a;
  color: #fff;
}

.why-saturn-section .section-head h2,
.why-saturn-section .section-head p,
.why-saturn-section .stats-grid h3,
.why-saturn-section .stats-grid .text {
  color: inherit;
}

.why-saturn-section .stats-grid {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.why-saturn-section .stats-grid .head {
  flex-direction: column;
  flex-wrap: initial;
  height: auto;
}

.why-saturn-section .stats-grid .text {
  min-height: auto;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.why-saturn-section .stats-grid h3 {
  font-weight: 700;
  font-size: 20px;
}

.stats-grid .icon {
  display: flex;
}

.equipment-cij-section .stats-grid:hover .icon {
  mix-blend-mode: exclusion;
}

.why-saturn-section .stats-grid .icon svg path {
  fill: #fff;
  transition: 0.3s;
}

.why-saturn-section .stats-grid:hover {
  color: #171717;
  background-color: #fff;
}

.why-saturn-section .stats-grid:hover .icon svg path {
  fill: #171717;
}

.lets-talk-section .section-head h2 {
  font-size: 48px;
  color: #171717;
  font-weight: 600;
}

.justify-between {
  justify-content: space-between;
}

.home-blogs-section {
  background-color: #ddf8fe;
}

.blogs-cards-area {
  margin-top: 30px;
}

.infrastructure-grid,
.blogs-grid {
  position: relative;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.infrastructure-grid .text h4,
.blogs-grid .text h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 7px;
  transition: 0.3s;
}

.infrastructure-grid .text p,
.blogs-grid .text p {
  font-weight: 500;
  color: #5c5c5c;
  font-size: 15px;
  margin-bottom: 11px;
  transition: 0.3s;
}

.blogs-grid:hover {
  background-color: #1c2e4a;
  color: #fff;
}

.blogs-grid:hover p {
  color: #fff;
}

.blogs-grid .button {
  padding: 10px 15px;
  font-size: 12px;
}

.blogs-grid:hover .button {
  background: #fff;
  color: #171717;
}

.infrastructure-grid .image,
.blogs-grid .image {
  border-radius: 11px;
  overflow: hidden;
  display: flex;
}

.infrastructure-grid .content,
.blogs-grid .content {
  margin-top: 15px;
}

.footer-contact-details .contact-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-contact-details .contact-detail .icon {
  width: 30px;
  display: flex;
}

.footer-contact-details .contact-detail a,
.footer-contact-details .contact-detail p {
  width: calc(100% - 50px);
  font-size: 15px;
  font-weight: 600;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.follow-us-footer ul {
  display: flex;
  list-style: none;
  gap: 10px;
  margin-top: 10px;
}

.follow-us-footer h5 {
  font-size: 15px;
}

.footer-copyright .row {
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}

.follow-us-footer {
  margin-top: 15px;
}

.industries-sliders-container {
  height: 100%;
}

.industries-cater-section .grid-2 {
  align-items: stretch;
}

.industries-cater-section .section-head {
  height: fit-content;
}

.industry-slider-1,
.industry-slider-2 {
  height: 100vh; /* adjust as needed */
  overflow: hidden;
}

.industry-slider-1 .swiper-wrapper,
.industry-slider-2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.industries-cater-section {
  background-color: #ebfbfe;
}

.industries-cater-section .section-head p {
  line-height: 1.6;
  margin-top: 20px;
}

.industries-cater-section .image {
  margin-top: 50px;
}

.image.cater-image-main img {
    aspect-ratio: 4 / 2;
    object-fit: cover;
}

.image.cater-image-main img:not(.active) {
  display: none;
}

.industry-slider-1 .swiper-slide,
.industry-slider-2 .swiper-slide {
  height: fit-content;
}

.industries-cater-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.industries-cater-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.industries-cater-card p {
  font-size: 14px;
  font-weight: 600;
  height: 100px;
}

.industries-cater-card a {
  font-weight: 600;
}

.industries-cater-card:hover {
  background-color: #1c2e4a;
  color: #fff;
}

.marquee {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 30s linear infinite;
}

.marquee-down .marquee-track {
  animation: scrollDown 30s linear infinite;
}

/* UP */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* DOWN */
@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hover pause */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.about-us-page-section {
  background-color: #ebfbfe;
}

.about-us-page-section .image {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
}

.about-saturn-glance-section {
  background-color: #fff;
}

.about-saturn-glance-section .stats-grid {
  border: 1px solid #e6e6e6;
}

.split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.split-head .head {
  max-width: 80%;
}

.split-head .slider-arrows {
  margin-top: 20px;
  padding-right: 15px;
}

.split-head p {
  color: #575757;
}

.split-head .slider-arrows > div.swiper-button-disabled {
  background-color: #fff;
  border-color: #0000001a;
  opacity: 1;
}

.split-head .slider-arrows > div.swiper-button-disabled svg path {
  stroke: #adadad;
}

.mission-vision-section {
  background-color: #ebfbfe;
}

.mission-vision-grid {
  position: relative;
}

.mission-vision-grid .image {
  border-radius: 15px;
  overflow: hidden;
}

.mission-vision-grid .content {
  position: absolute;
  inset: 50px;
}

.mission-vision-grid .content h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1c2e4a;
}

.mission-vision-grid .content p {
  font-size: 17px;
  font-weight: 600;
}

.brands-grid {
  box-shadow: 3px 6px 12px rgba(131, 131, 131, 0.2);
  border-radius: 10px;
  overflow: hidden;
  gap: 0;
  height: 100%;
}

.our-brands-container .brands-slider .swiper-slide {
  height: -webkit-fill-available;
}

.brands-grid .content {
  background-color: #1c2e4a;
  color: #fff;
  padding: 30px 20px;
}

.our-brands-container .swiper-slide {
  padding-block: 40px;
  padding-right: 14px;
}

.brands-grid .content h3 {
  font-size: 27px;
}

.brands-grid .content p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 7px;
}

.brands-grid .image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ebfbfe;
}

.brands-grid .image img {
  mix-blend-mode: multiply;
}

.brands-slider .swiper-pagination {
  position: relative;
  margin-top: 10px;
}

.brands-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0363b2;
  border-color: #0363b2;
}

.our-values-section {
  position: relative;
  background-color: #1c2e4a;
  color: #fff;
}

.our-values-section .section-head h2 {
  color: #fff;
  font-size: 42px;
}

.our-values-section .values-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.values-grid {
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.values-grid h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.values-grid p {
  font-size: 14px;
  transition: 0.3s;
  font-weight: 500;
}

.values-grid:hover {
  background-color: #fff;
  color: #171717;
}

.values-grid:hover p {
  color: #5a5a5a;
}

.infrastructure-grid {
  background-color: #ebfbfe;
}

.infrastructure-grid .text p {
  color: #171717;
  font-size: 16px;
}

.infrastructure-grid .content .heading {
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.infrastructure-grid .content .heading h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  max-width: 65%;
}

.infrastructure-grid .content .heading .location {
  display: flex;
  align-items: center;
  gap: 7px;
}

.our-infrastructure-container {
  margin-top: 30px;
}

.certificate-section {
  background-color: #1c2e4a;
  color: #fff;
}

.certificate-section .section-head h2,
.certificate-section .section-head p {
  color: inherit;
}

.certificate-container {
  margin-top: 40px;
}

.certificate-grid .image {
  display: flex;
  height: 140px;
}

.certificate-container .certificate-grid .image {
    height: auto;
}

.certificate-grid .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.certificate-slider .certificate-slider-pagination {
  position: relative;
  inset: 0;
  margin-top: 25px;
}

.certificate-slider .certificate-slider-pagination .swiper-pagination-bullet {
  border: none;
  height: 10px;
  width: 10px;
}

.certificate-slider
  .certificate-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0363b2;
  border-color: #0363b2;
  width: 35px;
}

.inner-banner-section.only-heading {
  background: #1c2e4a;
}

.inner-banner-section.only-heading .inner-banner {
  height: auto;
}

.chairman-section {
  position: relative;
  background-color: #ebfafd;
}

.chairman-section .image {
  width: 77%;
  display: flex;
  margin-right: -27%;
}

.chairman-section .container {
  display: flex;
  flex-wrap: wrap;
}

.chairman-section .section-content {
  width: 50%;
  padding-inline: 60px;
  /* margin-left: -100px; */
  padding-block: 8rem;
}

.chairman-section .image img {
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}

.chairman-quote {
  position: relative;
}

.chairman-quote p {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.chairman-quote .icon-left {
  position: absolute;
  top: 0;
  right: calc(100% + 20px);
}

.chairman-quote .icon-right {
  position: absolute;
  bottom: 0;
  left: calc(100% + 20px);
}

.chairman-name h2 {
  /*text-align: right;*/
  display: flex;
  flex-direction: column;
  font-size: 45px;
  line-height: 1.1;
  margin-top: 50px;
  font-weight: 700;
  color: #000;
}

.chairman-name h2 span {
  color: #0363b2;
}

.chairman-content-section .content p {
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.5;
}

.forum-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}

.forum-card .content {
  width: 50%;
  font-size: 13px;
  font-weight: 600;
}

.forum-card .content h3 {
  font-weight: inherit;
}

.forum-card .image {
  width: calc(50% - 10px);
}

.member-forum-grids {
  margin-top: 50px;
}

.blogs-listing-section .blogs-grid {
  padding: 15px 15px 19px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  color: inherit;
}

.blogs-listing-section .blogs-grid .button {
  padding: 0;
  font-size: 16px;
}

.blogs-grid .date {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  transition: 0.3s;
}

.blogs-grid:hover .date {
  /* color: #fff; */
}

.blogs-listing-section .blogs-grid:hover .button {
  /* color: #fff; */
}

.blogs-listing-section .blogs-grid:hover {
  background-color: #ebfbfe;
}

.blogs-listing-section .blogs-grid .button path {
  transition: 0.3s;
}

.blogs-listing-section .blogs-grid .text {
  padding-inline: 10px;
}

.blogs-listing-section .blogs-grid:hover p {
  color: #5c5c5c;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination ul,
.pagination > div {
  display: flex;
  gap: 12px;
}

.pagination li,
.pagination .prev,
.pagination .next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(21, 33, 36, 0.1);
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px;
  color: #040b0b;
  font-weight: 500;
  font-size: 14px;
}

.pagination li:hover,
.pagination li.active,
.pagination .prev:hover,
.pagination .next:hover {
  background-color: #1c2e4a;
  color: #fff;
  stroke: #fff;
}

.blogs-detail-banner-section h1 {
  font-size: 46px;
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #232536;
}

.blogs-detail-banner-section {
  margin-top: 40px;
}

.blogs-detail-content-section .section-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #232536;
}

.blogs-detail-content-section .section-content p {
  font-size: 17px;
  color: #5c5c5c;
  font-weight: 500;
}

.blogs-detail-related-section .blogs-cards-area {
  margin-top: 0;
}

.blogs-detail-related-section .section-head h2 {
  color: #232536;
}

.equipment-cij-section .stats-grid {
  background: transparent;
  border: none;
  border-radius: 20px;
}

.product-catalog-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.product-catalog-section {
  background-color: #ebfbfe;
}

.product-catalog-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 35px;
  background: #ffffff;
  border-radius: 14px;
}

.product-catalog-grid.reverse {
  flex-direction: row-reverse;
}

.product-catalog-grid .content h3 {
  font-size: 25px;
  font-weight: 900;
  color: #1c2e4a;
}

.product-catalog-grid .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-catalog-grid .content p {
  font-weight: 500;
  font-size: 14px;
}

.product-catalog-grid .content .button {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  background: #0363b2;
  border-radius: 40px;
  font-size: 13px;
  margin-top: 5px;
}

.pdp-slider-card {
  background: #f7f7f7;
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 3px solid #fff0;
}

.pdp-slider-section .product-detail-slider {
  padding-block: 30px;
}

.pdp-content-section {
  background-color: #ebfbfe;
}

.pdp-slider-card:hover {
  background: rgba(255, 255, 255, 0.3);
  border: 3px solid #0363b2;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

.pdp-specs-list {
  list-style: none;
  padding-inline: 15px;
}

.pdp-specs-list li, .pdp-specs-list .li {
  padding: 15px 20px;
  border-bottom: 1px solid #0000001a;
  color: #5c5c5c;
}

.pdp-specs-container .head {
  padding: 15px 35px;
  background-color: #1c2e4a;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-body);
}

.pdp-specs-container {
  gap: 0;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 5px;
  margin-top: 30px;
}
.pdp-specs-section {
  background-color: #ebfbfe;
}

.pdp-specs-list li:last-child {
  border: none;
}

.pdp-why-content-area .stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px 40px;
}

.pdp-why-content-area .stats-grid .head {
  width: 60px;
  height: 100%;
  padding-top: 10px;
}

.pdp-why-content-area .stats-grid .text {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pdp-why-content-area .stats-grid .text h3 {
  width: 100%;
  margin-bottom: 10px;
  text-align: left !important;
}

.why-saturn-section .stats-grid:hover .icon,
.pdp-why-content-area .stats-grid:hover .icon {
    mix-blend-mode: difference;
}

.download-product-section {
  background-color: #ebfbfe;
}

.download-product-row .section-head {
  width: 42%;
}

.download-product-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 50%;
  padding: 25px 20px;
  background-color: rgb(255 255 255 / 60%);
  border-radius: 10px;
}

.download-product-row {
  justify-content: space-between;
  align-items: center;
}

.download-product-btn .icon {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ink-content-section {
  background-color: #ebfbfe;
}

.inki-logos {
  margin-top: 30px;
}

.inki-logos .image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 5px;
  background: #ffffff;
  border-radius: 14px;
}

.filters-area h4 {
  font-weight: 600;
  font-size: 12px;
  color: #5c5c5c;
}

.filters-area .filters {
  display: flex;
  align-items: center;
  padding: 5px;
  background: #ebfbfe;
  border-radius: 80px;
  display: inline-flex;
  margin-top: 15px;
}

.filter-item {
  font-weight: 600;
  padding: 13px 20px;
  cursor: pointer;
}

.filters .filter-item.active {
  background: #0363b2;
  border-radius: 70px;
  color: #fff;
}

.filters-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  padding-block: 17px;
  border-bottom: 1px solid #0000001a;
  margin-bottom: 20px;
}

.filters-checkbox .checkbox-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filters-checkbox .checkbox-group input {
  width: 15px;
  height: 15px;
}

.product-grid .content h3 {
  font-weight: 700;
  margin-bottom: 7px;
}

.product-grid .content p {
  font-size: 14px;
  font-weight: 500;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Accordion Styles */
.accordion {
  border-bottom: 1px solid #ddd;
  /*margin-bottom: 10px;*/
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: EBFBFE;
  padding: 20px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
}

.accordion-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.accordion-icon {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.accordion.active .accordion-icon {
  transform: rotate(0deg);
}

.accordion-content {
  display: none;
  padding: 20px 15px;
  padding-top: 0;
  transition: all 0.3s ease;
}

.accordion.active .accordion-content {
  display: block;
}

.accordion.active {
  background-color: #ebfbfe;
}

.accordions-container {
  margin-top: 30px;
}

.specialist-card {
  max-width: 75%;
  margin-inline: auto;
  background-color: #ebfbfe;
}

.specialist-card .image {
  display: flex;
}

.specialist-card .section-head {
  padding: 40px 30px 40px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.specialist-card .section-head h2 {
  font-size: 23px;
  margin-top: 10px;
  border-bottom: 1px solid #0000001a;
  padding-bottom: 15px;
}

.specialist-card .section-head .languages {
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.specialist-card .section-head p {
  color: #000;
}

.specialist-contact-details .detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.specialist-contact-details .icon {
  width: 30px;
  display: flex;
}

.specialist-contact-details a {
  width: calc(100% - 50px);
  font-size: 15px;
  font-weight: 600;
}

.specialist-contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonials-grid {
  background-color: #e9f9fc;
  padding: 15px;
  border-radius: 12px;
  height: -webkit-fill-available;
}

.testimonials-slider .swiper-slide {
  height: -webkit-fill-available;
}

.testimonials-grid .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonials-grid .review {
  font-size: 20px;
  font-weight: 500;
}

.testimonials-grid .reviewer-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 7px;
  margin-top: 17px;
}

.testimonials-grid .designation {
  display: flex;
  flex-direction: column;
  font-weight: 500;
}

.testimonials-grid .designation span {
  font-size: 14px;
  margin-top: 3px;
}

.our-testimonials-container {
  margin-top: 30px;
  margin-left: calc(((100vw - (var(--max-width))) / 2) + 10px);
}

.pb-0\! {
  padding-bottom: 0 !important;
}

.contact-page-form .form-group:has(button) {
  display: inline-block;
  margin-top: 10px;
}

.contact-page-form .form-group button {
  font-size: 17px;
  padding-inline: 25px;
}

.contact-page-details {
  background-color: #1c2e4a;
  color: #fff;
  padding: 30px;
  height: 100%;
}

.contact-details-grids .details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.contact-details-grids .details-grid .icon {
  width: 30px;
}

.contact-details-grids .details-grid .text {
  width: calc(100% - (30px + 15px));
}

.contact-details-grids {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-page-details .contact-map {
  position: relative;
  margin-top: 30px;
}

.contact-page-details .contact-map .button {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.contact-page-section .section-head h2 {
  margin-bottom: 15px;
  font-size: 32px;
}

.contact-page-section .section-head p {
  font-size: 16px;
}

.contact-page-section {
  background-image: url(../images/Contact-Info-bg.jpg);
}

.contact-page-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.distribution-grid {
  position: relative;
}

.distribution-grid .image-text {
  position: relative;
  height: 100%;
}

.distribution-grid .image {
  display: flex;
  height: 100%;
}

.distribution-grid .image-text img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.distribution-grid .city {
  position: absolute;
  bottom: 0;
  padding: 13px;
  width: 100%;
  background-color: #e7f3ed;
  font-weight: 600;
  font-size: 18px;
}

.distribution-grid .hover-content {
  background-color: #1b2c47;
  position: absolute;
  inset: 0;
  padding: 30px;
  opacity: 0;
  color: #fff;
  transition: 0.3s;
}

.distribution-grid:hover .hover-content {
  opacity: 1;
}

.city-address {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.city-address .address-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
}

.distribution-grid .hover-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.contact-distribution-section .section-head h2 {
  /* color: var(--color-light); */
  margin-bottom: 15px;
}

.contact-distribution-container {
  margin-top: 10px;
}

.city-address .address-detail strong {
  font-size: 14px;
  opacity: 0.4;
  font-weight: 500;
}

.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-container .swiper-pagination {
  position: relative;
  width: 100% !important;
  inset: initial !important;
  transform: initial !important;
  display: flex;
  /* flex-direction: column; */
  gap: 6rem;
  justify-content: center;
  /* overflow: initial; */
  margin-inline: auto;
  padding-block: 30px;
}

.timeline-container .swiper-timeline {
  /* width: calc(100% - 120px); */
  max-height: 80vh;
}

.timeline-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  /* align-items: center; */
}

.timeline-container .swiper-slide > div {
  display: flex;
  /* align-items: center; */
  width: 100%;
  justify-content: space-between;
}

.timeline-container .swiper-slide .image {
  width: 50%;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
}

.timeline-container .swiper-slide .content-area {
  width: calc(50% - 30px);
  display: flex;
  /* align-items: center; */
}

.timeline-container .content h2 {
  font-size: 14rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgb(0 0 0 / 20%);
  opacity: 0.6; /* faded look */
  line-height: 1;
}

.timeline-container .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #03569a;
}

.timeline-container .content .inner-content p {
  color: #5c5c5c;
  font-weight: 500;
  font-size: 15px;
}

.timeline-container .swiper-pagination .swiper-pagination-bullet {
  width: 75px !important;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #fff;
  border: 5px solid #bdddef !important;
  color: #0363b2;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 1;
  margin: 0px !important;
  transition: 0.3s;
  transform: scale(1);
  /* left: initial !important; */
}

.timeline-container
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0363b2;
  color: #fff;
  border-color: #0363b2 !important;
  transition: 0.3s;
  transform: scale(1.25);
}

.timeline-container .swiper-pagination .swiper-pagination-bullet.completed {
  border-color: #0363b2;
  color: #0363b2;
}

.timeline-container .swiper-pagination-area .progress-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 100%;
  background-color: #bdddef;
  z-index: -1;
}

.timeline-container .swiper-pagination-area {
  position: relative;
  width: 100%;
  z-index: 1;
}

.timeline-container
  .swiper-pagination-area
  .progress-line
  .progress-line-inner {
  height: 0%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #005f31;
  z-index: -1;
  top: 0;
  transition: height 1s ease;
}

.timeline-container .swiper-slide .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-legacy-section {
  background-color: #ebfbfe;
}

.timeline-container .container {
  width: 100%;
}

.gray-bg {
  background-color: #fafafa;
}

.megamenu {
  position: absolute;
  background-color: #ecfbfe;
  font-weight: 600;
  text-align: center;
  display: none;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 125px);
  overflow-y: scroll;
}

.megamenu.active {
  display: block;
  left: 0;
  visibility: visible;
}

.megamenu-grid {
  position: relative;
  border-right: 1px solid #becdd2;
  padding-block: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.megamenu-grid:last-child {
  border: none;
}

.megamenu-grid .image {
  display: flex;
  justify-content: center;
}

.close-megamenu,
.close-inner-megamenu {
  font-size: 30px;
  line-height: 1;
  text-align: right;
  padding-right: 15px;
  cursor: pointer;
  display: none;
}

.mega-menu-inner {
    /* padding-block: 35px; */
    background-color: #fff;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    display: none;
}

.mega-menu-inner.active {
    visibility: visible;
    opacity: 1;
    display: block;
}

.megamenu-inner-grid {
    position: relative;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    transition: 0.3s;
    cursor: pointer;
}

.megamenu-grid:hover,
.megamenu-inner-grid:hover {
    background: #1C2E4A;
    color: #fff;
}

.megamenu-inner-grid h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.megamenu-inner-grid p {
    font-size: 14px;
     display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
}

.megamenu-inner-grid .megamenu-inner-arrow {
    opacity: 0;
    transition: 0.3s;
}

.megamenu-inner-grid:hover .megamenu-inner-arrow {
    opacity: 1;
}

.close-navigation {
  position: absolute;
  top: 10px;
  font-size: 33px;
  text-align: right;
  right: 15px;
  display: none;
}

.megamenu .container {
    padding-inline: 50px;
}

.thankyou-section {
  position: relative;
  background-color: #ddf8fe;
  color: #151515;
  height: calc(100vh - 90px);
  text-align: center;
  display: flex;
  align-items: center;
}

.tick-animation svg {
  width: 110px;
  height: 100%;
}

.thankyou-section h1 {
  font-size: 35px;
  text-transform: capitalize;
}

.about-us-page-section .image video {
  width: 100%;
}

.certificate-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.certificate-popup.active {
  display: block;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.popup-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 240px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.pdp-content-section .image {
    display: flex;
}

.pdp-content-section .image img {
    width: 100%;
}

.pdp-content-section .section-head {
    display: flex;
    align-items: center;
}

.product-catalog-tag {
    background-color: #EBFBFE;
    width: fit-content;
    padding: 10px;
    color: #0363B2;
    font-size: 13px;
    font-weight: 700;
    border-radius: 40px;
    letter-spacing: 2%;
}

.pdp-content-image-text-section .image {
    max-width: 35%;
}

.pdp-content-image-text-section .section-head {
    max-width: calc(65% - 40px);
}

@media screen and (min-width: 1350px) {
  .container {
    max-width: 1260px;
  }
}

@media screen and (max-width: 1024px) {
  .mobile-nav-toggle {
    display: inline-block;
    cursor: pointer;
  }

  footer .navigation-list {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 10px 0;
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .footer-map-locator {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
  }

  .menu-button {
    display: grid;
    gap: 6px 0;
  }

  .menu-button .line {
    width: 25px;
    height: 2px;
    background: #000;
    transition: 0.3s;
  }

  .menu-button.active .line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 2px);
    /* transform-origin: left top; */
  }

  .menu-button.active .line:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    /* transform-origin: left bottom; */
  }

  .navigation .navigation-list {
    /*display: none;*/
    /*position: absolute;*/
    /*top: 100%;*/
    /*left: 0;*/
    /*z-index: 2;*/
    /*background-color: #fff;*/
    /*width: 100%;*/
    /*padding: 10px 15px 20px;*/
    /*box-shadow: 0px 15px 10px #00000017;*/
  }

  .navigation .navigation-list li.dropdown:after {
    position: absolute;
    right: 0;
    top: 5px;
    width: 13px;
    height: 13px;
    transform: rotate(-90deg);
  }

  header .navigation .navigation-list > li.dropdown {
    padding-right: 20px;
  }

  .dropdown .dropdown-menu {
    position: relative;
    opacity: 1;
    display: none;
    visibility: visible;
    box-shadow: none;
    width: 100%;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 0;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    visibility: hidden;
    transition: 0.2s visibility left;
    box-shadow: 0 0 40px #00000017;
  }

  .navigation.active {
    left: 0;
    visibility: visible;
    z-index: 1;
  }

  header .navigation .navigation-list {
    gap: 10px;
  }

  header .navigation .navigation-list li {
    width: 100%;
    border: none !important;
    padding-block: 7px;
  }

  header .navigation .navigation-list > li > a {
    display: block;
    padding-block: 0;
    font-size: 17px;
  }

  header .navigation .navigation-list > li a.button {
    display: inline-block;
  }
  .home-banner .banner-content {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 26px;
    line-height: initial !important;
  }

  .home-banner-section {
  }

  .home-banner,
  .home-banner .banner-image {
    height: 100%;
  }

  .col-2 {
    width: 100%;
  }

  .section-head h2 {
    font-size: 27px;
    letter-spacing: 0;
  }

  .section-head h4 {
    font-size: 14px;
  }

  .section-head p {
    font-size: 16px;
  }

  .section-head.text-center {
    max-width: 100%;
  }

  .hamburg-icon {
    display: inline-block;
    position: relative;
    z-index: 1;
    cursor: pointer;
  }

  .navbar .row {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 10px;
    padding-block: 0;
  }

  header .logo {
    justify-content: center;
    margin-inline: auto;
  }

  .header-social-icons {
    margin-left: 0;
    padding-left: 0;
    border: none;
  }

  .navigation-area {
    justify-content: flex-end;
  }

  .navbar {
    padding-block: 10px;
  }

  .main-banner .container,
  .home-banner .container {
    margin-left: 0;
    width: 90%;
  }

  header .search-bar {
    grid-column: 1 / -1;
    order: 99;
  }

  header .search-bar input {
    width: 100%;
  }

  header .search-bar input {
    width: 100%;
  }

  .header-contact .button {
    padding-inline: 10px;
    font-size: 14px;
    gap: 7px;
  }

  .header-contact .button .icon {
    width: 20px;
  }

  .glance-content-area .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .technology-card h3 {
    font-size: 20px;
  }

  .technology-card {
    padding: 20px;
  }

  .why-saturn-section .stats-grid h3 {
    text-align: center;
  }

  .industries-cater-card p {
    height: auto;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .industries-cater-section .grid-2 {
    gap: 10px;
  }

  .marquee-track {
    gap: 10px;
  }

  .industries-cater-card h3 {
    font-size: 17px;
  }

  .lets-talk-section .grid-2.gap-7 {
    gap: 10px;
  }

  .lets-talk-section .section-head h2 {
    font-size: 34px;
  }

  .mission-vision-grid .content {
    inset: 30px;
  }

  .contact-page-section .grid-12 {
    gap: 20px;
  }

  .contact-page-details {
    padding: 20px;
  }

  .contact-details-grids .details-grid .icon svg {
    width: 25px;
  }

  .contact-details-grids .details-grid {
    font-size: 14px;
    gap: 10px;
  }

  .distribution-grid .city {
    font-size: 15px;
  }

  .contact-distribution-container .grid-3 {
    gap: 10px;
  }

  .megamenu {
    position: fixed;
    left: -100%;
    width: 45%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    visibility: hidden;
    transition: 0.2s visibility left;
    box-shadow: 0 0 40px #00000017;
    top: 0;
    z-index: 99999999;
    padding: 20px 0;
    max-height: calc(100vh - 5px);
  }

  .container .grid-5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-height: calc(100vh - 50px);
    overflow-y: scroll;
  }

  .megamenu-grid {
    padding-block: 10px;
    border: none;
  }

  .portfolio-slider .swiper-slide {
    opacity: 1;
    transform: scale(1) !important;
  }

  .portfolio-slider .swiper-slide-next .portfolio-card {
    transform: scale(1);
  }

  .portfolio-container .slider-arrows {
    margin-top: 25px;
  }

  .blogs-cards-area {
    gap: 10px;
  }

  .infrastructure-grid,
  .blogs-grid {
    padding: 10px;
    height: 100%;
  }

  footer .footer-row {
    gap: 30px;
  }

  .footer-navigation-wrapper {
    width: calc(65% - 15px);
  }

  .footer-navigation-wrapper .footer-col-navigation {
    width: 30%;
  }

  .footer-contact-details .contact-detail a,
  .footer-contact-details .contact-detail p {
    font-size: 14px;
  }

  .stats-grid h3 {
    font-size: 21px;
  }

  .glance-content-area .grid-3 {
    gap: 10px;
  }

  .mission-vision-section .grid-2 {
    gap: 10px;
  }

  .mission-vision-grid .content h3 {
    font-size: 27px;
  }

  .mission-vision-grid .content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .our-values-section .values-container {
    gap: 10px;
  }

  .our-infrastructure-container .swiper-slide {
    height: -webkit-fill-available;
  }

  .infrastructure-grid .content .heading h4,
  .infrastructure-grid .content .heading .location {
    max-width: 100%;
    width: 100%;
  }

  .infrastructure-grid .content .heading {
    flex-direction: column-reverse;
    gap: 5px;
  }

  .timeline-container .content h2 {
    font-size: 7rem;
  }

  .printing-portfolio-section .container,
  .printing-portfolio-section .portfolio-container {
    padding-inline: 15px;
  }

  .specialist-card {
    max-width: 100%;
  }

  .product-catalog-grid .content {
    width: 90%;
  }

  .portfolio-card .content {
    opacity: 0;
  }

  .portfolio-card .content-hover {
    opacity: 1;
  }
  .close-navigation,
  .close-megamenu,
  .close-inner-megamenu {
    display: block;
  }

  .chairman-name h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .chairman-section .image {
    width: 80%;
    margin-right: -30%;
  }
}

@media screen and (max-width: 570px) {
  .form {
    padding: 15px;
  }

  .lets-talk-section .section-head h2 {
    font-size: 28px;
  }

  .navigation,
  .megamenu {
    width: 90%;
  }
  
  .mega-menu-inner {
        position: absolute;
        width: 100%;
        left: -100%;
        height: 100%;
        top: 0;
        transition: 0.5s;
        display: block;
        padding-block: 20px;
    }
    
    .mega-menu-inner.active {
        left: 0;
        visibility: visible;
    }
    
    .mega-menu-inner .grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        max-height: calc(100vh - 50px);
        overflow-y: scroll;
        padding-bottom: 40px;
    }
    
    .megamenu .container {
        padding-inline: 15px;
    }
  .home-banner .banner-content p {
    font-size: 15px;
  }

  .home-banner .banner-content p br {
    display: none;
  }

  .button {
    font-size: 14px;
    padding: 10px 25px 11px;
  }

  .home-banner,
  .home-banner .banner-image {
    height: 60vh;
  }

  .glance-content-area .grid-3,
  .glance-content-area .grid-4,
  .glance-content-area .grid-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }

  .glance-content-area {
    gap: 10px;
  }

  .tabs .tabs-inner li {
    width: 50%;
    text-align: center;
    font-size: 14px;
    padding: 15px 8px;
  }

  .ink-technology-cards .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-cater-section .container > .grid-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .industries-cater-section .section-head {
    order: 1;
  }

  .lets-talk-section .grid-2.gap-7,
  .blogs-cards-area {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

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

  .footer-navigation-wrapper {
    width: 100%;
    row-gap: 30px;
  }

  .footer-navigation-wrapper .footer-col-navigation {
    width: 47%;
  }

  .footer-copyright {
    padding-block: 10px;
  }

  .footer-copyright .row > div {
    width: 100%;
    text-align: center;
  }

  .industries-cater-card {
    padding: 10px;
  }

  .industries-cater-card a {
    font-size: 14px;
  }

  .industries-cater-card h3 {
    font-size: 16px;
  }

  .contact-page-section .content,
  .contact-page-section .contact-form {
    grid-column: span 12;
  }

  .contact-distribution-container .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .mission-vision-section .grid-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .brands-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .brands-grid .content {
    order: 1;
  }

  .our-values-section .values-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .split-head {
    flex-direction: column;
  }

  .split-head .head {
    max-width: 100%;
    width: 100%;
  }

  .timeline-container .swiper-pagination {
    gap: 2rem;
  }

  .timeline-container .swiper-slide .image,
  .timeline-container .swiper-slide .content-area {
    width: 100%;
  }

  .timeline-container .swiper-slide > div {
    flex-wrap: wrap;
  }

  .timeline-container .content h3 {
    margin-top: 20px;
  }

  .timeline-container .content h2 {
    margin-top: 30px;
  }

  .chairman-section .section-content {
        width: 100%;
        padding: 40px 50px 10px 50px;
    }
    
    .chairman-section .image {
        width: 100%;
        overflow: hidden;
    }
    
    .chairman-section .image img {
        width: 130%;
        height: 390px;
        object-fit: cover;
        object-position: left;
    }
    
    .chairman-quote p {
        font-size: 19px;
        text-align: center;
    }
    
    .chairman-name h2 {
        text-align: center;
        margin-top: 30px;
    }
    
    .chairman-content-section .grid-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .member-forum-grids {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    footer {
        padding-top: 30px;
    }
    
    .specialist-card {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0;
    }
    
    .specialist-contact-details {
        margin-top: 40px;
    }
    
    .specialist-card .section-head {
        padding-block: 25px;
    }
    
    .section-head h2 {
        font-size: 25px;
    }
    
    .products-container.grid-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }
    
    .pdp-content-section .grid-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
    
    .inki-logos.grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .our-testimonials-container {
        margin-inline: 15px;
    }
    
    .inner-banner {
        height: 40vh;
        max-height: 400px;
    }
    
    .product-catalog-grid {
        flex-direction: column;
    }
    
    .product-catalog-grid.reverse {
        flex-direction: column;
    }
    
    .blogs-detail-banner-section h1 {
        font-size: 32px;
        letter-spacing: 0px;
    }
    
    .pdp-content-image-text-section .section-head,
    .pdp-content-image-text-section .image {
        width: 100%;
        max-width: 100%;
    }
    
    .download-product-row .section-head {
        width: 100%;
    }
    
    .download-product-btn {
        width: 100%;
        gap: 10px;
    }
    
    .download-product-btn .button {
        padding-inline: 15px;
        width: 135px;
        justify-content: center;
    }
    
    .pdp-specs-container .head {
        padding-inline: 20px;
    }
    
    .pdp-specs-list .li {
        padding-inline: 10px;
    }
    
    .pdp-specs-list {
        padding-inline: 10px;
    }
}
