@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  /* Color and Font-Family */
  --lato: "Lato";
  --vscontainer: 1520px;
  --grey: #282c32;
  --light-grey: #282c32b3;
  --white: #ffffff;
  --blue: #0027b5;
  --dark-blue: #031f36;
  --black: #121212;
  --light-white: #ededed;
  --text-blue: #1a4aff;
  --medium-grey: #f5f5f5;
  --gradientblue: linear-gradient(
    90deg,
    rgba(26, 60, 186, 1) 0%,
    rgba(20, 70, 228, 1) 100%
  );
  /* Font-Size */
  --fs-72: 72px;
  --fs-58: 58px;
  --fs-48: 48px;
  --fs-40: 40px;
  --fs-32: 32px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-22: 22px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-14: 14px;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
a:focus-visible {
  outline: none !important;
}
.post,
.page {
  margin: 0;
}
.row {
  margin: 0;
}
p,
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
.row > * {
  padding-left: 0;
  padding-right: 0;
}
body {
  width: 100%;
  font-family: var(--lato);
  overflow-x: hidden !important;
  color: var(--grey);
  background-color: var(--white);
}
a {
  text-decoration: none;
  color: inherit;
}
.vision-container {
  width: 100%;
  max-width: var(--vscontainer);
  margin: 0 auto;
}
/* Common CSS Start */
.py-80 {
  padding: 80px 0px;
}

/* Button CSS */
/* Blue Bg-Button */
.common-btn {
  all: unset;
  padding: 16px 30px;
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
  color: var(--white);
  background: var(--gradientblue);
  min-width: 76px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-btn span {
  position: relative;
  z-index: 2;
}
.common-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140px;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: none;
  z-index: 1;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.common-btn:hover::after {
  left: 140%;
}
.resposive-logo {
  display: none;
}
/* White Bg-Button */
.common-inner-btn {
  display: flex;
  padding: 16px 20px 16px 30px;
  justify-content: center;
  align-items: center;
  background: var(--white);
  gap: 10px;
  color: var(--text-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid var(--light-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content;
}
.common-inner-btn span {
  color: var(--text-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.common-inner-btn img {
  filter: none;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.common-inner-btn:hover {
  background: var(--text-blue);
  border-color: var(--text-blue);
}
.common-inner-btn:hover span {
  color: var(--white);
}
.common-inner-btn:hover img {
  filter: brightness(0) invert(1);
  transform: rotate(45deg);
}
.common-inner-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140px;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.common-inner-btn:hover::after {
  left: 140%;
}
.common-inner-btn a {
  position: relative;
  z-index: 2;
}
.common-title h2 {
  color: var(--grey);
  text-align: center;

  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.common-title p {
  color: var(--light-grey);
  text-align: center;

  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding-top: 12px;
  padding-bottom: 56px;
  max-width: 70%;
  margin: 0 auto;
}
/* Common CSS End */
/* Header CSS Start */
.top-navbar {
  background-color: var(--black);
  color: var(--white);
  padding: 12px 20px;
}
.top-navbar ul {
  display: flex;
  justify-content: end;
  align-items: center;
}
.top-navbar ul li {
  display: flex;
  grid-gap: 2px;
  align-items: center;
  border-left: 1px solid #282c32b2;
  padding: 0px 12px;
  font-size: var(--fs-16);
}
.top-navbar ul li:first-child {
  border-left: none;
}
.top-navbar ul li a {
  display: flex;
  grid-gap: 4px;
  align-items: center;
}
.menu-item .submenu {
  display: none !important;
}
.menu-item .submenu.open {
  display: block !important;
}
.top-navbar ul li.menu-item {
  display: none;
}
/* Mega Menu */
.megamenu-li {
  position: static;
}
.megamenu {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 100px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.navbar {
  padding: 0;
}
.mega-navbar .navbar {
  padding: 14px 20px 14px 0px;
  background-color: var(--white);
}
.dropdown-toggle::after {
  display: none;
}
.mega-navbar .navbar-nav {
  grid-gap: 18px;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.mega-navbar .nav-item {
  display: flex;
  align-items: center;
  min-height: 80px;
}
.mega-navbar .navbar-collapse {
  min-height: 80px;
}

.megamenu-inner {
  display: grid;
  grid-template-columns: 560px 1fr;
}
.mega-navbar .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 16px 16px 16px !important;
  grid-gap: 8px;
  color: var(--grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  background-color: #eaeaea;
  border-bottom: 6px solid #d1d1d1;
  border-radius: 10px;
  box-shadow:
    0 3px 2px 0 rgba(0, 0, 0, 0.25),
    0 -2px 2px 0 rgba(0, 0, 0, 0.1) inset;
}
.menu-left h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.menu-left p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 16px 0;
}
.menu-left {
  border-right: 2px solid #d8d8d8;
  padding: 36px;
}
.menu-right {
  display: grid;
  grid-template-columns: 1fr 460px;
}
.menu-list {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  padding: 36px;
  flex-wrap: wrap;
  height: 400px;
}
.menu-list li {
  flex: 0 0 auto;
  width: 50%;
  white-space: nowrap;
}
.menu-list li a {
  color: var(--grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  align-items: center;
  grid-gap: 4px;
  cursor: pointer;
}
.menu-list li a img {
  transition: transform 0.3s ease;
}
.menu-list li:hover img {
  transform: rotate(-45deg);
}
.header-banner-image {
  background-color: #f8f8f8;
  padding: 36px;
}
.header-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-list h3 {
  color: var(--grey);

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.menu-close {
  display: none;
}
.menu-close img{
  cursor: pointer;
}
.moblie-menu-only .contact-btn {
  display: none;
}
/* Header CSS End */
/* Hero Slider CSS Start */
.hero-slider-main {
  height: 782px;
  width: 100%;
}
.hero-slider-card {
  background-image: url("../images/hero-banner-image.png");
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slider-card {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  padding-top: 200px;
}
.hero-inner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 42%;
}
.hero-inner-content h2 {
  color: var(--white);
  text-align: center;
  font-size: var(--fs-72);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.hero-inner-content p {
  color: var(--white);
  text-align: center;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 24px 0 56px 0;
}
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
.hero-slider-main .swiper-pagination {
  bottom: 40px !important;
  width: 90% !important;
  left: 50% !important;
  transform: translate(-50%, -50px);
  display: flex;
  gap: 40px;
}
.hero-slider-main .swiper-pagination-bullet {
  flex: 1;
  background: none;
  opacity: 1;
  position: relative;
  border-radius: 10px;
  height: 4px;
}
.hero-slider-main .swiper-pagination-bullet::before {
  content: attr(data-title);
  color: var(--white);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  display: block;
  min-height: 62px;
}
.hero-slider-main .swiper-pagination-bullet::after {
  content: "";
  display: block;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  width: 100%;
}
.hero-slider-main .swiper-pagination-bullet-active::after {
  background: #2563eb;
  animation: progress 5s linear forwards;
}
@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* Footer CSS Start */
footer {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
footer hr {
  height: 1px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
}
.footer-main {
  padding: 30px 0;
}
.footer-main h3 {
  color: var(--white);

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 12px;
}
.footer-links ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 120px;
  background: var(--white);
  cursor: pointer;
}
.footer-links ul li img {
  transition: filter 0.3s ease;
}
.footer-links ul li:hover {
  background: var(--text-blue);
  color: var(--white);
}
.footer-links ul li:hover img {
  filter: brightness(0) invert(1);
}
.footer-main {
  display: flex;
  justify-content: space-between;
}
.newsletter-link a {
  background-color: var(--blue);
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.newsletter-link img {
  filter: brightness(0) invert(1);
  transform: rotate(45deg);
  height: 16px;
  width: 16px;
}
.newsletter-link .input-field {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding-right: 6px;
  margin-top: 12px;
  min-width: 440px;
}
.newsletter-link input {
  border-radius: 0;
  border: none;
}
.newsletter-link .form-control:focus {
  box-shadow: none;
}
.copyright-link {
  padding: 30px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.copyright-link span {
  color: var(--light-white);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.certification {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
/* Building a Reliable Section CSS Start*/
.building-reliable {
  background: var(--black);
  padding: 30px 0;
}
.building-reliable-inner {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
  align-items: center;
}
.building-reliable-inner h2 {
  color: var(--white);
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.building-reliable-inner p {
  color: var(--white);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding-top: 16px;
}
/* Building a Reliable Section CSS End*/
/* Happy to help Section Start */
.help-tabbing {
  position: relative;
}
.tabbing-main {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 2;
}
.help-tabbing-content {
  width: 90%;
  position: relative;
}
.tabbing-main .nav-tabs {
  all: unset;
}
.tabbing-main .nav-link.active,
.tabbing-main .nav-link {
  all: unset;
}
.tabbing-main .nav-tabs {
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
}
.tabbing-main .nav-tabs button,
.tabbing-main .nav-link.active {
  color: var(--white);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  padding: 15px 50px 15px 30px;
  align-items: center;
  gap: 16px;
  background: var(--blue);
  position: relative;
  cursor: pointer;
}
.tabbing-main .nav-link.active::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50px;
  left: -50px;
  z-index: 2;
}
.happy-to-help .tab-content > .tab-pane {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.happy-to-help .tab-content > .active {
  opacity: 1;
}
.inner-content {
  padding: 20px;
  background-color: var(--white);
  box-shadow: 0 0 32px 7px rgba(0, 0, 0, 0.25);
  width: 500px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.inner-content .title h3 {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  padding-bottom: 14px;
}
.inner-content .title p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.inner-content .common-inner-btn {
  margin-top: 24px;
}
.help-tabbing-content .inner-content .title p {
  text-align: start;
  padding: 0;
}
/* Happy to help Section End */

/* Product Videos Hub Section Start */
.product-videos {
  margin-top: 80px;
  padding: 80px 0px 160px 0px;
}

.background-video {
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-49%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}
.product-videos .title h3 {
  color: var(--white);
  text-align: center;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.title p {
  color: var(--light-white);
  text-align: center;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 12px 0px 56px 0px;
}
.main-product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.product-videos .content-section {
  background-color: var(--white);
  padding: 20px;
}
.content-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
}
.content-section h3 {
  color: var(--grey);
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.content-section h4 {
  color: var(--grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 14px;
}
.content-section p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 14px 0px 22px 0px;
}
.video-section {
  position: relative;
}
.yt-video-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: absolute;
  bottom: -96px;
  width: 106%;
  right: 0;
}
.custom-yt-class {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 11px -3px rgba(0, 0, 0, 0.25);
  padding: 12px;
  position: absolute;
  bottom: -96px;
  width: fit-content !important;
  right: 0;
}
.inner-card-yt {
  max-height: 150px;
  max-width: 150px;
}
.custom-pagination .swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.custom-pagination {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: fit-content;
  display: flex;
  gap: 16px;
}
.custom-pagination .swiper-button-next img {
  transform: rotate(180deg);
}
.custom-pagination .bg-common-pagi {
  background-color: rgba(255, 255, 255, 0.33);
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 120px;
  cursor: pointer;
}
.custom-pagination {
  display: flex;
  flex-direction: row-reverse;
}
.custom-pagination .swiper-button-prev {
  left: -40px;
}
.custom-pagination .swiper-button-next {
  left: 0px;
}
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
.product-videos .swiper {
  width: 100%;
}

.product-videos .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-videos .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.7;
}
.product-videos .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.product-videos .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
/* Product Videos Hub Section End */
/* Product Videos Hub Section End */
/* Global Presence Section Start */
.global-presence-grid {
  display: grid;
  grid-template-columns: 554px 1fr;
  grid-gap: 30px;
  align-items: center;
}
.country-flags {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 16px;
  margin-top: 20px;
}
.global-presence-card {
  max-width: 240px;
  min-height: 218px;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  border-bottom: 10px solid #0b1f6b;
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
  background-color: var(--white);
}
.global-presence-card h2 {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}
.global-presence-card span {
  color: var(--blue);

  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  padding-top: 14px;
}
.global-presence-card:nth-child(2) {
  margin-top: 168px;
}
.global-presence-card:nth-child(3) {
  margin-top: -168px;
}
.global-presence-inner-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  grid-gap: 48px;
}
.pan-india-main {
  background-color: var(--medium-grey);
  padding: 40px;
}
/* Global Presence Section End */
/* Pan India Section CSS Start */
.pan-india-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 15px;
  align-items: center;
}
/* Pan India Section CSS End */
/* Blog Section CSS Start */
.blog-cards-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.blog-card {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-blog-content {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: center;
}
.blog-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.blog-card:nth-child(1) .inner-blog-content {
  border: 1px solid rgba(40, 44, 50, 0.1);
  background: #111111b2;
  height: 100%;
  width: 100%;
}
.blog-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.blog-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.blog-card:nth-child(2) .inner-blog-content,
.blog-card:nth-child(3) .inner-blog-content {
  background: #000000e0;
  height: 100%;
  width: 100%;
  gap: 16px;
}

.inner-blog-content h3 {
  color: var(--white);

  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.inner-blog-content p {
  color: var(--white);

  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.grey-btn .common-inner-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.33) 0%,
    rgba(255, 255, 255, 0.33) 100%
  );
  padding: 8px;
  color: var(--white);
}
.grey-btn .common-inner-btn img,
.blogs .common-btn img {
  filter: brightness(0) invert(1);
}
.grey-btn .common-inner-btn:hover {
  background: var(--gradientblue);
}
.blogs .common-btn {
  display: flex;
  align-items: center;
  gap: 16px;
}
.blogs .common-btn img {
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.blogs .common-btn:hover img {
  transform: rotate(45deg);
}
.find-blogs {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
/* Blog Section CSS End */
/* Testimonials Section Start */
.testimonials-inner-cards {
  border: 1px solid #282c321a;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.testimonials-inner-cards img {
  max-width: 300px;
}
.testimonial-details p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-top: 24px;
}
.testimonial-autor h3 {
  color: var(--blue);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 16px 0 4px;
}
.testimonial-autor p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.testimonials .swiper-wrapper {
  padding-bottom: 30px;
}
.testimonials .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimonials .swiper-slide {
  display: flex;
  height: auto;
}
.testimonials .common-title {
  padding-bottom: 56px;
}
/* Testimonials Section End */
/* News Event Section Start */
/* .news-events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
} */

.news-events-grid {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 20px;
}

.news-event-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  min-height: 364px;
  background-repeat: no-repeat;
}
.news-event-card-inner {
  padding: 20px;
  background: #081236cc;
  height: 100%;
  width: 100%;
}
.news-event-card:nth-child(4n + 1) .news-event-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-event-card:nth-child(4n + 1) {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
}

.news-event-card:nth-child(4n + 2) {
  grid-column: 2;
  background: #000;
  grid-row: 1;
}
.news-event-card:nth-child(4n + 3) {
  grid-column: 3;
  grid-row: 1;
  background: #000;
}
.news-event-card:nth-child(4n + 4) {
  grid-column: 2 / span 2;
  grid-row: 2;
  background: #000;
}
.news-event-card:nth-child(4n + 2) .news-event-card-inner,
.news-event-card:nth-child(4n + 3) .news-event-card-inner {
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: start;
  grid-gap: 24px;
}
.news-event-card:nth-child(4n + 4) .news-event-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  grid-gap: 24px;
}
.news-event-card:nth-child(4n + 4) .news-event-card-inner p {
  width: 80%;
}
.news-event-card-inner p {
  color: var(--white);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.news-event-card-inner .date,
.inner-company-detail p,
.register-link a {
  color: var(--white);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.news-event-card-inner h2 {
  color: var(--white);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
}
.news-event-card-inner .company-icon {
  height: 84px;
  width: 270px;
  margin: 0 auto;
}
.inner-company-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-gap: 12px;
}
.register-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-gap: 24px;
  padding-bottom: 36px;
}
.register-link img {
  width: 110px;
  height: 74px;
}
/* News Event Section End */
/* Contact Form Start*/
.contact-main {
  display: grid;
  grid-template-columns: 680px 1fr;
  grid-gap: 20px;
}
.stroke-text {
  -webkit-text-stroke: 0.8px var(--text-blue);
  font-weight: 600;
  line-height: 150%;
  font-size: 120px;
  color: transparent;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 40px 0;
}
.contact-detail h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 28px;
}
.contact-detail p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.contact-form {
  background: var(--White, #fff);
  box-shadow: 0 0 36px 2px rgba(0, 0, 0, 0.14);
  padding: 20px;
}
/* Contact Form End*/
/* Location Section Start */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.address p {
  max-width: 400px;
}
.location-card {
  border: 1px solid var(--black);
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  align-items: start;
}
.contact-info {
  display: flex;
  align-items: start;
  grid-gap: 14px;
}
.location-card h2 {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
}
.location-card h3 {
  color: var(--grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding-bottom: 8px;
}
.location-card p,
.location-card a {
  color: var(--light-grey);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: block;
}
.contact-info-inner {
  min-width: 168px;
}
.contact-info-icons {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.contact-info-icons a {
  background-color: var(--black);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
/* Location Section End */

/* Sample Page Desing Start */
.hero-common-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 356px;
  max-height: 356px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-common-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    73.85% 73.85% at 50% 50%,
    rgba(17, 17, 17, 0) 0%,
    rgba(8, 18, 54, 0.5) 74.95%
  );
}
.hero-common-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000007d;
}
.hero-common-bg h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  font-size: var(--fs-58);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.sample-library-tabbing .nav-tabs {
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.sample-library-tabbing .nav-tabs .nav-link:focus,
.sample-library-tabbing .nav-tabs .nav-link:hover {
  border: none;
  color: var(--light-grey);
}
.sample-library-tabbing button {
  color: var(--light-grey);
  text-align: center;
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.sample-library-tabbing .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}
.tabbing-heading h3 {
  color: var(--grey);
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 30px;
  margin-top: 56px;
}
.sample-card {
  padding: 20px;
  background-color: var(--medium-grey);
}
.sample-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 320px;
}
.sample-card h4 {
  color: var(--grey);
  text-align: center;
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-top: 24px;
}
.sample-library-tabbing .nav-item:focus-visible {
  outline: none;
}
/* kill tab borders */
.sample-library-tabbing .nav-link {
  border: 0 !important;
}
.sample-library-tabbing .nav-tabs .nav-item.show .nav-link,
.sample-library-tabbing .nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
  color: var(--blue);
  border-bottom: 2px solid var(--blue) !important;
  font-weight: 700;
}
/* News Page CSS Start */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}
.new-card {
  background-color: var(--medium-grey);
  padding: 20px;
}
.new-card .common-inner-btn {
  margin-top: 20px;
}
.new-card label {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.new-card h3 {
  color: var(--grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 12px 0 14px;
}
.new-card p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.new-card .stall-no span {
  color: var(--text-blue);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: rgba(0, 39, 181, 0.1);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
  display: block;
}
.new-card .stall-no {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}
/* Gallery Page Details */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr; /* 👈 important */
  gap: 24px;
}
.gallery-images {
  background-color: var(--medium-grey);
  padding: 20px;
  padding-bottom: 50px;
}
.gallery-images h3{
  color: var(--grey);
text-align: center;
font-family: var(--lato);
font-size: var(--fs-24);
font-style: normal;
font-weight: 600;
margin-top: 10px;
line-height: 120%;
}
.gallery-page .nav-tabs {
  width: 100%;
}
.gallery-images img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* ---------------------------------- */
/*        SECTION 1 (1 → 6)           */
/* ---------------------------------- */

/* 1 */
.gallery-images:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

/* 2 */
.gallery-images:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

/* 3 (big box) */
.gallery-images:nth-child(3) {
  grid-column: 2 / span 2; /* col 2–3 */
  grid-row: 1 / span 2; /* tall */
}

/* 4 */
.gallery-images:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

/* 5 */
.gallery-images:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

/* 6 */
.gallery-images:nth-child(6) {
  grid-column: 3;
  grid-row: 3;
}

/* ---------------------------------- */
/*        SECTION 2 (7 → 12) REVERSED */
/* ---------------------------------- */

/* 7 */
.gallery-images:nth-child(7) {
  grid-column: 1;
  grid-row: 4;
}

/* 8 */
.gallery-images:nth-child(8) {
  grid-column: 2;
  grid-row: 4;
}

/* 9 */
.gallery-images:nth-child(9) {
  grid-column: 3;
  grid-row: 4;
}

/* 10 (big box bottom) */
.gallery-images:nth-child(10) {
  grid-column: 1 / span 2; /* col 1–2 */
  grid-row: 5 / span 2; /* tall */
}

/* 12 (top right small) */
.gallery-images:nth-child(12) {
  grid-column: 3;
  grid-row: 5;
}

/* 11 (bottom right small) */
.gallery-images:nth-child(11) {
  grid-column: 3;
  grid-row: 6;
}

/* Herader-Search CSS Start */

.cst-button {
  display: inline-block;
  margin: 4px 2px;
  font-size: 14px;
  padding-left: 32px;
  padding-right: 32px;
  background-color: rgba(40, 44, 50, 0.7);
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: white;
  text-decoration: none;
  cursor: pointer;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cst-button:hover {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  background-color: white;
  color: black;
}
.search-container {
  position: relative;
  display: inline-block;
  margin: 4px 2px;
  height: 44px;
  width: 44px;
  vertical-align: bottom;
}
.mglass {
  display: inline-block;
  pointer-events: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.searchbutton {
  position: absolute;
  font-size: 22px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.search:focus + .searchbutton {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  background-color: white;
  color: black;
}
.search {
  position: absolute;
  left: 49px; /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
  background-color: white;
  outline: none;
  border: none;
  padding: 0;
  width: 0;
  height: 100%;
  z-index: 10;
  padding: 0 !important;
  border: none !important;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
}
.search:focus {
  width: 200px; /* Bar width+1px */
  padding: 0 0 0 16px !important;
}
.expandright {
  left: auto;
  right: 49px; /* Button width-1px */
}
.expandright:focus {
  padding: 0 0 0 16px;
}
/* Herader-Search CSS Start */
/* Contact US Page Design start */
.contact-us-page .contact-detail {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 100px;
}
.contact-us-page .contact-main {
  display: flex;
  flex-direction: column;
}
.contact-location .location-grid {
  grid-template-columns: 1fr;
}
.contact-location .location-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.contact-location .contact-info {
  flex-wrap: wrap;
}
.contact-us-page {
  padding-top: 80px;
}
.contact-us-page .contact-detail {
  padding: 0px;
}
/* News Detail Page */
.news-detail-breadcrumb {
  display: flex;
  gap: 14px;
}
.news-detail-breadcrumb span {
  display: block;
  color: var(--text-blue);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 5px 15px;
  background: rgba(0, 39, 181, 0.1);
  backdrop-filter: blur(5px);
}
.new-details .breadcrumb-item + .breadcrumb-item::before {
  content: "|";
  color: black;
}
.new-details .breadcrumb {
  align-items: center;
  gap: 8px;
}
.new-details .breadcrumb-item.active {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.detail-page-image img {
  width: 100%;
}
.detail-page-image {
  margin: 36px 0;
}
.news-detail-grid {
  display: grid;
  grid-template-columns: 1fr 474px;
  gap: 100px;
  position: relative;
}
.new-details h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.news-detail-inner-content h3 {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
}
.news-detail-inner-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.news-detail-inner-content ul {
  padding-left: 22px;
  margin-top: 36px;
}
.news-detail-inner-content ul li {
  list-style-type: disc;
  color: var(--light-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.news-detail-inner-content p {
  color: var(--light-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 16px;
}
.box-info p {
  border-radius: 8px;
  border: 1px solid #d9dbe9;
  background: #f8f8fc;
  padding: 20px;
  margin-top: 16px;
  color: var(--light-grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.timeline-details {
  display: flex;
  gap: 14px;
  align-items: center;
}
.timeline-details span {
  color: var(--text-blue);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 5px 15px;
  background: rgba(0, 39, 181, 0.1);
  backdrop-filter: blur(5px);
  display: block;
}
.timeline-details small {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.timeline-card p {
  color: var(--grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.timeline-card {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #80808080;
}
.new-detail-timeline h2 {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  margin-bottom: 15px;
}
.news-social-media {
  border: 1px solid rgba(0, 51, 102, 0.2);
  background: var(--medium-grey);
  padding: 20px;
  width: 400px;
  margin-top: 54px;
}
.news-social-media h3 {
  color: #0e0808;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.news-social-media ul {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 12px;
}
.news-social-media ul li a {
  border-radius: 5px;
  border: 1px solid rgba(0, 51, 102, 0.3);
  background: #fff;
  display: flex;
  width: 55px;
  height: 55px;
  padding: 15px;
  align-items: center;
  justify-content: center;
}
.new-detail-timeline {
  position: sticky;
  top: 40px; /* header ho to adjust */
  height: fit-content;
}
.news-detail-card {
  padding-bottom: 80px;
}
.news-detail-card h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 40px;
}
/* Blog Page Design Start */
.recent-blog-header {
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 56px;
}
.recent-blog-header h2 {
  color: var(--grey);
  text-align: center;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 24px;
}
.recent-blog-header p {
  color: var(--light-grey);
  text-align: center;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.recent-blog-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recent-blog-header-info span {
  color: var(--text-blue);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 5px 15px;
  background: rgba(0, 39, 181, 0.1);
  backdrop-filter: blur(5px);
  display: block;
}
.recent-blog-header-info small {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.recent-blog-image img {
  width: 100%;
}
.recent-blog-main {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 62px;
  align-items: center;
}
.recent-blog-content h2 {
  color: var(--grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 12px;
}
.recent-blog-content p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 14px 0;
}
.blog-card-main {
  padding-bottom: 80px;
}
.blog-card-main .tabbing-heading p {
  color: var(--light-grey);
  text-align: center;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  max-width: 50%;
  margin: 24px auto;
}
.blog-card-main .sample-library-tabbing .nav-tabs {
  width: 100%;
  justify-content: space-between;
}
.blog-card-main .tabbing-heading h2 {
  color: var(--grey);
  text-align: center;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 30px;
}
.blog-main-img {
  width: 100%;
}
.blog-page-card {
  background-color: var(--medium-grey);
  padding: 20px;
}
.blog-main-img img {
  width: 100%;
}
.blog-page-card h3 {
  color: var(--grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-page-card p {
  overflow: hidden;
  color: var(--light-grey);
  text-overflow: ellipsis;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 14px 0 24px;
}
.blog-title span {
  color: var(--text-blue);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: rgba(0, 39, 181, 0.1);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
  display: block;
}
.blog-title small {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.blog-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 12px;
}
.custom-blog-page .page-item:first-child .page-link,
.custom-blog-page .page-item:last-child .page-link,
.page-link {
  border: none;
}
.custom-blog-page .page-link {
  color: var(--light-grey);
  text-align: center;
  font-size: var(--fs-22);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.custom-blog-page .active .page-link {
  color: var(--white);
  border-radius: 6px;
}
.custom-blog-page .pagination {
  justify-content: center;
  margin-top: 56px;
  gap: 8px;
}

/* Blog Detail Page CSS Start */

.blog-detail-page-title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.blog-detail-page-title label {
  color: var(--text-blue);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: rgba(0, 39, 181, 0.1);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
}
.blog-detail-page-title span {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  border-left: 2px solid #282c32;
  padding-left: 8px;
}
.blog-detail-page-left img {
  width: 100%;
}
.blog-detail-page-left h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 36px;
}
.blog-banner-image {
  margin-bottom: 36px;
}
.blog-detail-page-left p {
  color: var(--light-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 36px;
  margin-top: 18px;
}
.blog-detail-page-left h3 {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  margin-top: 36px;
}
.blog-detail-page-grid {
  display: grid;
  grid-template-columns: 1fr 474px;
  gap: 100px;
  position: relative;
}
.blog-detail-page-left ul {
  padding-left: 22px;
  margin-top: 18px;
  margin-bottom: 36px;
}
.blog-detail-page-left ul li {
  list-style-type: disc;
  color: var(--light-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.inner-product-image {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.inner-product-image img {
  width: 300px;
}
.custom-table-wrapper {
  border-radius: 8px;
  border: 1px solid #d9dbe9;
  background: #f8f8fc;
  padding: 20px;
  margin-top: 18px;
}
.custom-table th {
  color: var(--grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding: 0px 0 14px 0;
  background: none;
}

.custom-table td {
  padding: 14px 0;
  border-bottom: 1px solid #d9dbe9;
  vertical-align: middle;
  background: none;
  color: var(--grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table .label {
  color: #2c2f36;
  font-weight: 500;
  width: 40%;
}

.custom-table .value {
  color: #2c2f36;
  font-weight: 400;
}
.blog-image-dec {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #d9dbe9;
  background: #f8f8fc;
  margin-top: 18px;
  text-align: center;
}
.blog-image-dec img {
  width: 640px;
  margin: 0 auto;
}
.blog-image-dec p {
  margin-top: 32px;
  text-align: start;
  margin-bottom: 0;
}
.latest-blog-card {
  padding-top: 80px;
}
.latest-blog-card h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 40px;
}
/* About Us Page */
.about-ves-grid {
  display: grid;
  grid-template-columns: 1fr 646px;
  gap: 48px;
  align-items: center;
}
.about-ves-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-ves-detail h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.about-ves-detail p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.about-ves-detail p b {
  color: var(--grey);
}
.blue-box {
  background: var(--blue);
  padding: 10px;
}
.blue-box h3 {
  color: var(--white);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.blue-box ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.blue-box ul li {
  list-style-type: disc;
  color: var(--light-white);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.about-ves-card-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 40px;
}
.about-ves-card {
  background: var(--white);
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
  border-bottom: 8px solid #0b1f6b;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 20px 8px;
}
.about-ves-card h2 {
  color: #1235b5;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.about-ves-card p {
  color: var(--grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}
.about-founder {
  background-color: var(--dark-blue);
  margin-top: 160px;
}
.about-founder-header {
  background: var(--white);
  padding: 20px;
  box-shadow: 0 0 19.579px 4.283px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 76%;
  margin: -180px auto 0;
}
.about-founder-header h2 {
  color: var(--grey);
  text-align: center;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.about-founder-header p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.about-founder-header p b {
  color: var(--grey);
  font-weight: 700;
}
.founders-image {
  display: flex;
  align-items: end;
  gap: 10px;
  position: relative;
  z-index: 3;
}
.founder-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-top: 60px;
}
.founder-image-main {
  margin: 0 0 12px 12px;
  z-index: 1;
}
.founders-image a {
  margin-bottom: 12px;
}
.founders-image::before {
  height: 96%;
  width: 86%;
  content: "";
  background-color: white;
  position: absolute;
  left: 0px;
  bottom: 0;
}
.founder-info-card h2 {
  color: var(--white);
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-top: 12px;
}
.founder-info-card small {
  color: var(--white);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.founder-info-card p {
  color: var(--white);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-top: 12px;
}
/* About Page Slide css  */
.modern-facility-slider {
  max-height: 462px;
}
.facility-main {
  flex: 1;
  overflow: hidden;
}
.facility-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-thumbs {
  width: 120px;
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 194px;
}
.facility-thumbs .swiper-slide {
  min-height: 34px;
  max-width: 49px;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid var(--white);
}
.facility-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  min-width: 74px;
  min-height: 50px;
}
.facility-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modern-facility-slider .swiper-vertical > .swiper-wrapper {
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.modern-facility-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modern-facility-detail .blue-box {
  width: fit-content;
}
.modern-facility-detail .blue-box ul {
  margin: 0;
}
.modern-facility-detail h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.modern-facility-detail p {
  color: var(--light-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.modern-facility-detail p b {
  color: var(--grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.modern-facility-grid {
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 48px;
}
.why-choose-ves h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin-bottom: 32px;
}
.why-choose-ves-grid {
  display: grid;
  grid-template-columns: 608px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.why-choose-ves-achiv .why-choose-ves-achiv-cards {
  background-color: #96acff;
  padding: 20px;
  width: fit-content;
  padding-right: 60px;
  clip-path: polygon(0 0, 59% 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}
.why-choose-ves-achiv-cards h3 {
  color: var(--white);
  font-family: var(--lato);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}
.why-choose-ves-achiv-cards p {
  color: var(--white);
  font-family: var(--lato);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 8px;
}
.why-choose-ves-achiv .why-choose-ves-achiv-cards:nth-child(2) {
  background-color: #0b1f6b;
  padding-right: 120px;
}
.why-choose-ves-achiv .why-choose-ves-achiv-cards:nth-child(3) {
  background-color: #6686ff;
  padding-right: 120px;
}
.why-choose-ves-achiv .why-choose-ves-achiv-cards:nth-child(4) {
  background-color: #1843e8;
  padding-right: 56px;
}
.why-choose-ves-achiv {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-choose-ves-info p {
  color: var(--light-grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
}
.why-choose-ves-info p b {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.why-choose-ves-info p:nth-child(1) {
  margin-bottom: 24px;
}
.what-make-special {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.what-make-special ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.what-make-special ul li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.what-make-special ul li span {
  color: var(--black);
  font-family: var(--lato);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.what-make-special h3 {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.why-choose-ves .box-blue p {
  color: var(--light-grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.box-blue {
  border-bottom: 8px solid #0b1f6b;
  padding: 20px 20px 12px;
  background: var(--white);
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
}
.our-vision h2 {
  color: var(--grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin-bottom: 32px;
}
.vision-card {
  background-color: #f8f8f8;
  padding: 16px;
  transition: all 0.3s linear;
}
.vision-card:hover .vision-card-images h3 {
  color: var(--text-blue);
}
.vision-card:hover .vision-card-images {
  border-color: var(--text-blue);
}
.vision-card:hover .vision-card-images img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(6000%)
    hue-rotate(220deg);
}
.vision-card-images {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--black);
  display: flex;
  gap: 24px;
  align-items: center;
}
.vision-card-images h3 {
  color: var(--black);
  font-family: var(--lato);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}
.vision-card p {
  color: var(--light-grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.vision-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.who-are-we {
  background-color: var(--dark-blue);
}
.who-are-we-main {
  display: grid;
  grid-template-columns: 630px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.who-are-we-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.who-are-we-info h2 {
  color: var(--white);
  font-family: var(--lato);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.who-are-we-info p,
.who-are-we-info ul li {
  color: var(--white);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  list-style-type: disc;
}
.who-are-we-info ul {
  padding-left: 20px;
}
.who-are-we-secondary {
  display: grid;
  grid-template-columns: 1fr 784px;
  gap: 40px;
  align-items: start;
}
.who-are-we-info .accordion-item {
  all: unset;
  margin-bottom: 32px;
}
.who-are-we-info .accordion-button {
  background: none;
  padding: 0;
  flex-direction: row-reverse;
  gap: 12px;
  justify-content: start;
  color: var(--white);
  font-family: var(--lato);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.who-are-we-info .accordion-button:focus {
  box-shadow: none;
}
.who-are-we-info .accordion {
  --bs-accordion-border-color: none;
}
.who-are-we-info .accordion-button::after {
  background-color: white;
  background-image: url("../image/expand.svg");
  margin-left: 0;
}
.who-are-we-info .accordion-button:not(.collapsed)::after {
  background-image: url("../image/unexpand.svg");
}
.who-are-we-info .accordion-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-item:first-of-type .accordion-header {
  padding-top: 0;
}
.who-are-we-info .accordion-header {
  padding: 32px 0 10px;
}
.why-us-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-us-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}
.why-us-card ul li,
.why-us-card p {
  color: var(--light-grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  list-style-type: disc;
}
.why-us-card ul p {
  margin-bottom: 20px;
  margin-left: -20px;
}
.why-us-card b {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 564px;
  gap: 40px;
  align-items: center;
}
.why-us-grid {
  background-color: var(--medium-grey);
  padding: 40px;
}
.why-us-card h2 {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.our-strength h2 {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  margin-bottom: 32px;
}
.our-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.our-strength-card {
  border: 1px solid rgba(40, 44, 50, 0.1);
  background: var(--white);
  padding: 20px;
}
.our-strength-card p {
  color: var(--light-grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.our-strength-card p b {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.ves-expertise h2 {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  margin-bottom: 32px;
}
.ves-expertise p {
  color: var(--light-grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.ves-expertise b {
  color: var(--grey);
  font-family: var(--lato);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.expertise-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ves-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.modern-facility-slider {
  display: flex;
  gap: 16px;
  position: relative;
}

.mega-navbar .navbar-toggler-icon {
  background-image: url("../images/menu-icon.svg");
  width: 2.5em;
  height: 2.5em;
}
.mega-navbar .navbar-toggler {
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}


/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}
/* track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* thumb */
::-webkit-scrollbar-thumb {
  background: #1a4aff;
}
/* hover */
::-webkit-scrollbar-thumb:hover {
  background: #1a4aff;
}
