@charset "UTF-8";

@keyframes downArrow {
  from {
    transform: translateY(6px);
  }
  to {
    transform: translateY(0px);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: -0.1px;
}

/* --- CUSTOM LIGHTWEIGHT GRID (Bootstrap Replacement) --- */
:root {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}
.container { width: 100%; padding-right: calc(var(--bs-gutter-x) * 0.5); padding-left: calc(var(--bs-gutter-x) * 0.5); margin-right: auto; margin-left: auto; }
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row { display: flex; flex-wrap: wrap; margin-top: calc(var(--bs-gutter-y) * -1); margin-right: calc(var(--bs-gutter-x) * -0.5); margin-left: calc(var(--bs-gutter-x) * -0.5); }
.row > * { flex-shrink: 0; width: 100%; max-width: 100%; padding-right: calc(var(--bs-gutter-x) * 0.5); padding-left: calc(var(--bs-gutter-x) * 0.5); margin-top: var(--bs-gutter-y); }

.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) { .col-sm-6 { flex: 0 0 auto; width: 50%; } }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
}

@media (min-width: 1200px) {
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
}

/* Flex utilities */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-flex { display: flex !important; }
  .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-block { display: block !important; }
}

.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

@media (min-width: 992px) {
  .align-items-lg-end { align-items: flex-end !important; }
  .justify-content-lg-end { justify-content: flex-end !important; }
}

/* Sizing */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.object-fit-contain { object-fit: contain !important; }
.object-fit-cover { object-fit: cover !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/* Text */
.text-center { text-align: center !important; }
.fw-semibold { font-weight: 600 !important; }
.text-white { color: #fff !important; }

/* Gap */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }
@media (min-width: 576px) { .gap-sm-5 { gap: 3rem !important; } }
@media (min-width: 992px) { .gap-lg-3 { gap: 1rem !important; } }

/* Spacing (Margins & Paddings) */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.p-0 { padding: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }

@media (min-width: 576px) {
  .mt-sm-2 { margin-top: 0.5rem !important; }
  .mt-sm-3 { margin-top: 1rem !important; }
  .mt-sm-4 { margin-top: 1.5rem !important; }
  .mt-sm-5 { margin-top: 3rem !important; }
  .mb-sm-4 { margin-bottom: 1.5rem !important; }
  .py-sm-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .pt-sm-2 { padding-top: 0.5rem !important; }
  .pb-sm-0 { padding-bottom: 0 !important; }
}

@media (min-width: 992px) {
  .mt-lg-0 { margin-top: 0 !important; }
  .mt-lg-5 { margin-top: 3rem !important; }
  .mb-lg-5 { margin-bottom: 3rem !important; }
  .ms-lg-4 { margin-left: 1.5rem !important; }
  .me-lg-3 { margin-right: 1rem !important; }
  .ps-lg-5 { padding-left: 3rem !important; }
  .pe-lg-0 { padding-right: 0 !important; }
  .pe-lg-5 { padding-right: 3rem !important; }
}

@media (min-width: 1200px) {
  .mt-xl-0 { margin-top: 0 !important; }
  .mb-xl-5 { margin-bottom: 3rem !important; }
  .ps-xl-5 { padding-left: 3rem !important; }
  .pe-xl-5 { padding-right: 3rem !important; }
}

@media (min-width: 1400px) {
  .ps-xxl-5 { padding-left: 3rem !important; }
  .mb-xxl-5 { margin-bottom: 3rem !important; }
}

/* Gutters */
.gy-3 { --bs-gutter-y: 1rem; }
.gy-4 { --bs-gutter-y: 1.5rem; }
.gy-5 { --bs-gutter-y: 3rem; }
.gx-2 { --bs-gutter-x: 0.5rem; }

@media (min-width: 576px) {
  .gy-sm-4 { --bs-gutter-y: 1.5rem; }
  .gy-sm-5 { --bs-gutter-y: 3rem; }
  .gx-sm-3 { --bs-gutter-x: 1rem; }
}

@media (min-width: 992px) {
  .gy-lg-0 { --bs-gutter-y: 0; }
  .gy-lg-5 { --bs-gutter-y: 3rem; }
}
/* --- END CUSTOM LIGHTWEIGHT GRID --- */

body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #43A1FF;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

.primary-btn {
  border-style: none;
  background-color: #43A1FF;
  border-radius: 5px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 16px;
  font-size: 13px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .primary-btn {
    padding: 14px 16px;
    font-size: 15px;
  }
}
.primary-btn:hover {
  background-color: rgb(16, 135.5, 255);
}

a {
  color: #666496 !important;
  text-decoration: none !important;
}

.heading h5 {
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(to right, #2354a2, #ef4323, #ef4323);
  width: max-content;
  background-size: 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .heading h5 {
    letter-spacing: 1px;
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .heading h5 {
    font-size: 16px;
  }
}
.heading h1,
.heading h2 {
  color: #423F88;
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  .heading h1,
  .heading h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .heading h1,
  .heading h2 {
    font-size: 34px;
    margin-top: 15px;
  }
}
@media (min-width: 1400px) {
  .heading h1,
  .heading h2 {
    font-size: 38px;
    margin-top: 18px;
  }
}
.heading._center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.heading._center h5,
.heading._center h1,
.heading._center h2,
.heading._center p {
  text-align: center;
}
.heading._white h5 {
  background: none;
  color: #fff;
  -webkit-text-fill-color: unset;
}
.heading._white h1,
.heading._white h2 {
  color: #fff;
}

main {
  min-height: 60vh;
  padding-top: 88px;
}
@media (min-width: 576px) {
  main {
    padding-top: 136px;
  }
}
main figure {
  margin-bottom: 0;
}

section {
  padding: 50px 0;
}
@media (min-width: 992px) {
  section {
    padding: 80px 0;
  }
}

p {
  font-size: 15px;
  color: #666496;
}
@media (min-width: 576px) {
  p {
    font-size: 16px;
  }
}

.heading-desc {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .heading-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
}
header .top-header-wrap {
  position: sticky;
  top: 0;
  border-bottom: 1px solid #dbe4f2;
  background-color: #e8f6ff;
}
@media (min-width: 768px) {
  header .top-header-wrap {
    background-color: #fff;
  }
}
header .top-header-wrap .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .top-header-wrap .top-header .stock-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
  gap: 15px;
  padding: 8px 5px 8px 5px;
  background-color: #e8f6ff;
  width: 100%;
}
@media (min-width: 576px) {
  header .top-header-wrap .top-header .stock-price-wrap {
    padding: 14px 25px 14px 25px;
    align-items: center;
  }
}
@media (min-width: 768px) {
  header .top-header-wrap .top-header .stock-price-wrap {
    width: max-content;
    justify-content: flex-start;
  }
}
header .top-header-wrap .top-header .stock-price-wrap span {
  text-transform: uppercase;
  position: relative;
  font-size: 11px;
  line-height: 1;
}
@media (min-width: 576px) {
  header .top-header-wrap .top-header .stock-price-wrap span {
    font-size: 14px;
    line-height: unset;
  }
}
header .top-header-wrap .top-header .stock-price-wrap span:last-child::after, header .top-header-wrap .top-header .stock-price-wrap span:nth-last-child(2)::after {
  content: "";
}
header .top-header-wrap .top-header .stock-price-wrap span::after {
  content: "|";
  position: absolute;
  right: -9px;
}
header .top-header-wrap .top-header .stock-price-wrap.price-increase .price-indicator {
  content: "";
  height: 8px;
  width: 8px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #1acb81;
}
header .top-header-wrap .top-header .links-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .top-header-wrap .top-header .links-wrap .site-links {
  display: none;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  gap: 20px;
}
@media (min-width: 992px) {
  header .top-header-wrap .top-header .links-wrap .site-links {
    display: flex;
  }
}
header .top-header-wrap .top-header .links-wrap .site-links a {
  color: #666496;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
header .top-header-wrap .top-header .links-wrap .site-links a:hover {
  color: #EF4323 !important;
}
header .main-header-wrap {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  background-color: #fff;
  transition: 0.3s;
}
header .main-header-wrap .main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
}
@media (min-width: 576px) {
  header .main-header-wrap .main-header {
    padding: 13px 0;
  }
}
@media (min-width: 1200px) {
  header .main-header-wrap .main-header {
    padding: 16px 0;
  }
}
header .main-header-wrap .main-header .nav-link figure {
  margin-bottom: 0;
  max-width: 200px;
  margin-left: 15px;
}
@media (min-width: 576px) {
  header .main-header-wrap .main-header .nav-link figure {
    max-width: unset;
  }
}
header .main-header-wrap .main-header .nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) {
  header .main-header-wrap .main-header .nav-links-wrap {
    gap: 40px;
  }
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: none;
  align-items: center;
  gap: 17px;
}
@media (min-width: 1200px) {
  header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list {
    display: flex;
  }
}
@media (min-width: 1400px) {
  header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list {
    gap: 25px;
  }
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666496;
  font-weight: 600;
  transition: 0.3s;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li a .dropdown-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8px;
  width: 8px;
  flex: none;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li a .dropdown-icon svg {
  height: 100%;
  width: 100%;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown {
  position: relative;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav {
  position: absolute;
  top: 50px;
  background-color: #fff;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 29px 0px;
  display: flex;
  pointer-events: none;
  transition: 0.3s;
  opacity: 0;
  z-index: 101;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-bottom: 3px solid #43A1FF;
  transform: translateX(-50%);
  left: 50%;
}
@media (min-width: 1200px) {
  header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav {
    padding: 10px 5px;
  }
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 100%;
  height: 30px;
  left: 0;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav .nav-items-list {
  width: 225px;
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav .nav-items-list {
    min-width: 210px;
  }
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav .nav-items-list li {
  width: 100%;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav .nav-items-list li a {
  color: #666496;
  text-decoration: none;
  padding: 7px 10px;
  width: 100%;
  transition: 0.4s;
  column-gap: 10px;
  font-weight: 600;
  position: relative;
  font-size: 14px;
}
@media (min-width: 1200px) {
  header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav .nav-items-list li a {
    padding: 7px 12px;
  }
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li._dropdown .min-nav .nav-items-list li a:hover {
  color: #43A1FF;
}
header .main-header-wrap .main-header .nav-links-wrap nav .nav-links-list li:hover > .main-nav-link {
  color: #EF4323 !important;
}
header .main-header-wrap .main-header .nav-links-wrap .primary-btn {
  display: none;
}
@media (min-width: 576px) {
  header .main-header-wrap .main-header .nav-links-wrap .primary-btn {
    display: flex;
  }
}
header .main-header-wrap .main-header .nav-links-wrap .menu-btn-wrap {
  border-left: 1px solid #dbe4f2;
  display: flex;
}
@media (min-width: 576px) {
  header .main-header-wrap .main-header .nav-links-wrap .menu-btn-wrap {
    border-left-style: none;
  }
}
@media (min-width: 1200px) {
  header .main-header-wrap .main-header .nav-links-wrap .menu-btn-wrap {
    display: none;
  }
}
header .main-header-wrap .main-header .nav-links-wrap .menu-btn-wrap .menu-btn {
  border-style: none;
  background-color: transparent;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .main-header-wrap .main-header .nav-links-wrap .menu-btn-wrap .menu-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
}
header .main-header-wrap .main-header .nav-links-wrap .menu-btn-wrap .menu-btn span svg {
  height: 100%;
  width: 100%;
}
header::after {
  transition: 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition-delay: 0.2s;
}

section.banner {
  padding: 0;
}
section.banner .banner-single .banner-text-wrap {
  position: relative;
  z-index: 3;
  padding: 30px 0;
}
@media (min-width: 992px) {
  section.banner .banner-single .banner-text-wrap {
    max-width: 70%;
    padding: 60px 0;
  }
}
section.banner .banner-single .banner-text-wrap .heading-text-overlay {
  font-family: "Stolzl", sans-serif;
  font-size: 50px;
  letter-spacing: 1px;
  position: absolute;
  font-weight: 800;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3019607843);
  top: -5px;
  left: 15%;
  color: rgba(255, 255, 255, 0.0196078431);
  line-height: 1;
}
@media (min-width: 576px) {
  section.banner .banner-single .banner-text-wrap .heading-text-overlay {
    letter-spacing: 4px;
    font-size: 80px;
    top: -15px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-single .banner-text-wrap .heading-text-overlay {
    letter-spacing: 8px;
    font-size: 120px;
    top: -10px;
  }
}
section.banner .banner-single .banner-text-wrap .heading h5 {
  font-weight: 600;
  letter-spacing: 0;
}
@media (min-width: 1400px) {
  section.banner .banner-single .banner-text-wrap .heading h1,
  section.banner .banner-single .banner-text-wrap .heading h2 {
    font-size: 46px;
    line-height: 1.2;
  }
}
section.banner .banner-single .banner-text-wrap .desc-wrap {
  position: relative;
}
@media (min-width: 768px) {
  section.banner .banner-single .banner-text-wrap .desc-wrap {
    padding-left: 100px;
  }
  section.banner .banner-single .banner-text-wrap .desc-wrap::before {
    content: "";
    height: 2px;
    width: 80px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 31px;
    opacity: 0.5;
  }
}
section.banner .banner-single .banner-text-wrap .desc-wrap p {
  padding-left: 0px;
  color: #fff;
  font-size: 16px;
  padding: 3px 0 10px 0;
}
@media (min-width: 768px) {
  section.banner .banner-single .banner-text-wrap .desc-wrap p {
    font-size: 18px;
    padding: 20px 0 30px 0;
  }
}
section.banner .banner-single {
  min-height: calc(90vh - 136px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #72acff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.banner .banner-single {
    min-height: calc(100vh - 136px);
  }
}
section.banner .banner-single .audio-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background-color: transparent;
  transition: 0.4s;
  z-index: 3;
}
@media (min-width: 992px) {
  section.banner .banner-single .audio-btn {
    top: 50px;
    right: 50px;
  }
}
section.banner .banner-single .audio-btn:hover figure {
  transform: translateY(-4px);
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08);
  background-color: rgb(36.4, 145.7, 255);
}
section.banner .banner-single .audio-btn figure {
  height: 28px;
  width: 28px;
  padding: 6px 6px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #423F88;
  transition: 0.4s;
}
@media (min-width: 992px) {
  section.banner .banner-single .audio-btn figure {
    height: 50px;
    width: 50px;
    padding: 14px 14px;
  }
}
section.banner .banner-single .audio-btn figure img {
  height: 100%;
  width: 100%;
  transition: 0.4s;
}
section.banner .banner-single .video-btn-wrap {
  position: absolute;
  bottom: 50px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  text-transform: capitalize;
  gap: 12px;
  color: #130E7F;
  cursor: pointer;
  border-radius: 6px;
  padding: 5px 10px;
  z-index: 3;
  background-color: #fff;
}
@media (min-width: 992px) {
  section.banner .banner-single .video-btn-wrap {
    bottom: 50px;
    right: 50px;
    transform: translateX(0);
  }
}
section.banner .banner-single .video-btn-wrap:hover .fancy-play-video {
  transform: translateY(-2px);
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.15);
  background-color: rgb(36.4, 145.7, 255);
}
section.banner .banner-single .video-btn-wrap h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.banner .banner-single .video-btn-wrap h5 {
    font-size: 16px;
  }
}
section.banner .banner-single .video-btn-wrap h4 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 992px) {
  section.banner .banner-single .video-btn-wrap h4 {
    font-size: 20px;
  }
}
section.banner .banner-single .video-btn-wrap .fancy-play-video {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #423F88;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  section.banner .banner-single .video-btn-wrap .fancy-play-video {
    height: 50px;
    width: 50px;
  }
}
section.banner .banner-single .video-btn-wrap .fancy-play-video figure {
  height: 12px;
  width: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  section.banner .banner-single .video-btn-wrap .fancy-play-video figure {
    height: 20px;
    width: 20px;
  }
}
section.banner .banner-single .video-btn-wrap .fancy-play-video figure img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
section.banner .banner-single .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  margin-bottom: 0;
}
section.banner .banner-single .banner-bg img {
  opacity: 0.9;
  position: relative;
  z-index: 0;
}
section.banner .banner-single .banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 100, 209, 0.2509803922);
  z-index: 1;
}
section.banner .bottom-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  padding-right: 0;
}

section.about .about-stats-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.about .about-stats-wrap {
    gap: 30px;
    flex-wrap: unset;
  }
}
@media (min-width: 1200px) {
  section.about .about-stats-wrap {
    display: flex;
    flex-direction: column;
  }
}
section.about .about-stats-wrap .stat h3 {
  color: #423F88;
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.about .about-stats-wrap .stat h3 {
    white-space: nowrap;
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  section.about .about-stats-wrap .stat h3 {
    font-size: 46px;
  }
}
section.about .about-stats-wrap .stat p {
  font-weight: 600;
  text-transform: capitalize;
}
section.about .about-stats-wrap .stat p::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background-color: #EF4323;
  margin-top: 10px;
}
@media (min-width: 576px) {
  section.about .about-stats-wrap .stat p::after {
    margin-bottom: 18px;
  }
}
section.about .about-figure,
section.about .about-figure > img {
  border-radius: 0.7rem;
}
section.about .about-figure {
  height: 100%;
  width: 100%;
}
section.about .about-text-wrap h6 {
  font-weight: 700;
  line-height: 1.4;
  color: #130E7F;
}
section.about .energy-features .feature-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.about .energy-features .feature-wrap .feature-icon {
  height: 35px;
  width: 35px;
  flex: none;
  margin-bottom: 0;
}
section.about .energy-features .feature-wrap p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
  color: #130E7F;
}

section.projects {
  position: relative;
}
section.projects .bg-figure {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
section.projects .stats-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  gap: 15px;
}
@media (min-width: 576px) {
  section.projects .stats-wrap {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  section.projects .stats-wrap {
    margin-top: 50px;
  }
}
section.projects .stats-wrap .stat h3 {
  color: #423F88;
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.projects .stats-wrap .stat h3 {
    white-space: nowrap;
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  section.projects .stats-wrap .stat h3 {
    font-size: 40px;
  }
}
section.projects .stats-wrap .stat p {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
  color: #130E7F;
}
@media (min-width: 992px) {
  section.projects .stats-wrap .stat p {
    font-size: 18px;
  }
}
section.projects .stats-wrap .stat p::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background-color: #EF4323;
  margin-top: 15px;
}
@media (min-width: 576px) {
  section.projects .stats-wrap .stat p::after {
    margin-top: 25px;
  }
}
@media (min-width: 576px) {
  section.projects .stats-wrap .stat p::after {
    margin-bottom: 18px;
  }
}
section.projects .map-image-wrap {
  position: relative;
  margin-top: 40px;
}
@media (min-width: 576px) {
  section.projects .map-image-wrap {
    margin-top: 40px;
  }
}
section.projects .map-image-wrap .map-figure {
  width: 100%;
}
section.projects .map-image-wrap .location-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
  position: absolute;
}
section.projects .map-image-wrap .location-icon svg {
  height: 100%;
  width: 100%;
}
section.projects .map-image-wrap .location-icon.maharashtra {
  top: 60%;
  left: 18%;
}
section.projects .map-image-wrap .location-icon.tamil-nadu {
  bottom: 13%;
  left: 34%;
}
section.projects .map-image-wrap .location-icon.gujarat {
  top: 45%;
  left: 10%;
}
section.projects .map-image-wrap .location-icon.rajasthan {
  top: 34%;
  left: 16%;
}
section.projects .map-image-wrap .instruction-card {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 7px 10px;
  gap: 10px;
  position: absolute;
  top: -40px;
  right: 0;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 8px;
  background-color: #fff;
}
@media (min-width: 576px) {
  section.projects .map-image-wrap .instruction-card {
    top: -10px;
    padding: 10px;
  }
}
section.projects .map-image-wrap .instruction-card span svg {
  font-size: 20px;
  stroke: #1acb81;
}
section.projects .map-image-wrap .instruction-card p {
  color: #423F88;
  font-size: 13px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.projects .map-image-wrap .instruction-card p {
    font-size: 14px;
  }
}

.projects-card {
  position: absolute;
  top: 26%;
  z-index: 4;
  left: 50%;
  max-width: 330px;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 12px 12px 12px 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.05s ease-in-out;
  margin: auto;
}
@media (min-width: 992px) {
  .projects-card {
    left: 40%;
    top: 40%;
    transform: translateX(-50%) translateY(-50%);
    padding: 15px 18px;
  }
}
@media (min-width: 1400px) {
  .projects-card {
    max-width: 65%;
  }
}
.projects-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #423F88;
  height: 24px;
}
@media (min-width: 576px) {
  .projects-card h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }
}

section.sustainability {
  background-color: #e8f6ff;
}
section.sustainability .stat-card {
  background-color: #91b4ff;
  padding: 15px 20px;
  border-radius: 10px;
}
@media (min-width: 576px) {
  section.sustainability .stat-card {
    padding: 30px 35px;
  }
}
section.sustainability .stat-card h3 {
  font-size: 30px;
  color: #fff;
  color: #130E7F;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.sustainability .stat-card h3 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  section.sustainability .stat-card h3 {
    font-size: 50px;
  }
}
section.sustainability .stat-card p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 576px) {
  section.sustainability .stat-card p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.sustainability .stat-card p {
    font-size: 20px;
  }
}
section.sustainability .clients-wrap h4 {
  color: #130E7F;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.sustainability .clients-wrap h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  section.sustainability .clients-wrap h4 {
    font-size: 24px;
  }
}
section.sustainability .clients-wrap p {
  font-size: 14px;
}
@media (min-width: 576px) {
  section.sustainability .clients-wrap p {
    font-size: 15px;
  }
}
section.sustainability .clients-wrap .clients-figure {
  max-width: 110px;
}
@media (min-width: 576px) {
  section.sustainability .clients-wrap .clients-figure {
    max-width: 160px;
  }
}
section.sustainability .sustainability-slider {
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  section.sustainability .sustainability-slider {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  section.sustainability .sustainability-slider {
    margin-top: 80px;
  }
}
section.sustainability .sustainability-slider .splide__list,
section.sustainability .sustainability-slider .splide__track {
  padding-top: 24px;
}
section.sustainability .sustainability-card {
  background-color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 14px;
  height: 100%;
  justify-content: space-between;
  max-width: 320px;
  margin: auto;
  transition: 0.3s;
}
@media (min-width: 576px) {
  section.sustainability .sustainability-card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateY(-7px);
  }
}
@media (min-width: 768px) {
  section.sustainability .sustainability-card {
    max-width: unset;
    padding: 40px 14px;
  }
}
section.sustainability .sustainability-card .insight-figure {
  height: 80px;
  width: 80px;
}
section.sustainability .sustainability-card h4 {
  color: #130E7F;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 25px;
}
@media (min-width: 576px) {
  section.sustainability .sustainability-card h4 {
    font-size: 24px;
    margin-top: 40px;
  }
}
section.sustainability .sustainability-card p {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
section.sustainability .sustainability-card .dots-figure {
  max-width: 35px;
}

section.electricity-sales {
  background-color: #e8f6ff;
}
section.electricity-sales .electricity-sales-card {
  position: relative;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  max-width: 425px;
  margin: auto;
  transition: 0.3s;
}
section.electricity-sales .electricity-sales-card figure {
  min-height: 300px;
  width: 100%;
  height: 100%;
}
section.electricity-sales .electricity-sales-card h3 {
  padding: 20px 15px 18px 15px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #423F88;
}
@media (min-width: 576px) {
  section.electricity-sales .electricity-sales-card h3 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.electricity-sales .electricity-sales-card h3 {
    height: 100%;
  }
}
@media (min-width: 1400px) {
  section.electricity-sales .electricity-sales-card h3 {
    height: unset;
  }
}
section.electricity-sales .electricity-sales-card .content-wrap {
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 15px 15px 15px;
  border-radius: 0 0 10px 10px;
}
section.electricity-sales .electricity-sales-card .content-wrap .media-description-read-more {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: 0.3s;
}
section.electricity-sales .electricity-sales-card .content-wrap .media-description-read-more .forward-arrow {
  fill: #ef4423;
  font-weight: 900;
  font-size: 18px;
  stroke: width 10px;
}
@media (min-width: 320px) {
  section.electricity-sales .electricity-sales-card .content-wrap .media-description-read-more .forward-arrow {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  section.electricity-sales .electricity-sales-card .content-wrap .media-description-read-more .forward-arrow {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.electricity-sales .electricity-sales-card .content-wrap .media-description-read-more {
    font-size: 15px;
  }
}
section.electricity-sales .electricity-sales-card .content-wrap .media-description-read-more:hover {
  color: #EF4323 !important;
}
section.electricity-sales .electricity-sales-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

footer {
  padding: 50px 0 0;
}
@media (min-width: 768px) {
  footer {
    padding: 120px 0 0;
  }
}
footer .footer-heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
@media (min-width: 992px) {
  footer .footer-heading {
    font-size: 18px;
  }
}
footer .footer-heading::after {
  content: "";
  height: 1px;
  width: 60px;
  background-color: #EF4323;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media (min-width: 576px) {
  footer .footer-heading::after {
    bottom: -15px;
  }
}
footer p,
footer p > span {
  font-weight: 500;
  font-size: 14.3px;
}
footer .top-footer-wrap .footer-links-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 576px) {
  footer .top-footer-wrap .footer-links-list {
    margin-top: 35px;
  }
}
@media (min-width: 768px) {
  footer .top-footer-wrap .footer-links-list {
    gap: 7px;
  }
}
footer .top-footer-wrap .footer-links-list li a {
  color: #666496;
  font-weight: 500;
  font-size: 14.3px;
  transition: 0.3s;
}
footer .top-footer-wrap .footer-links-list li a:hover {
  color: #EF4323 !important;
}
footer .middle-footer-wrap {
  margin-top: 30px;
  padding-bottom: 25px;
  position: relative;
}
@media (min-width: 576px) {
  footer .middle-footer-wrap {
    margin-top: 60px;
    padding-bottom: 45px;
  }
}
@media (min-width: 1200px) {
  footer .middle-footer-wrap {
    margin-top: 70px;
  }
}
footer .footer-social-links-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  footer .footer-social-links-list {
    margin-top: 45px;
  }
}
footer .footer-social-links-list li a {
  background-color: #d6eaff;
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 20px;
  display: inline-block;
  transition: 0.4s;
}
footer .footer-social-links-list li a svg {
  fill: #43A1FF;
  transition: 0.4s;
}
footer .footer-social-links-list li a:hover {
  background-color: rgb(16, 135.5, 255);
}
footer .footer-social-links-list li a:hover svg {
  fill: #fff;
}
footer .footer-description {
  margin-top: 27px;
}
@media (min-width: 576px) {
  footer .footer-description {
    margin-top: 35px;
  }
}
footer .bottom-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(67, 161, 255, 0.1803921569);
  padding-block: 25px;
  flex-direction: column;
}
footer .bottom-footer-wrap p,
footer .bottom-footer-wrap a {
  font-size: 12px;
  text-align: center;
  color: #666496;
  font-weight: 500;
}
@media (min-width: 576px) {
  footer .bottom-footer-wrap p,
  footer .bottom-footer-wrap a {
    font-size: 14.3px;
  }
}
footer .bottom-footer-wrap a {
  transition: 0.3s;
}
footer .bottom-footer-wrap a:hover {
  color: #EF4323 !important;
}
@media (min-width: 576px) {
  footer .bottom-footer-wrap {
    padding-block: 30px;
  }
}
@media (min-width: 1200px) {
  footer .bottom-footer-wrap {
    padding-block: 45px;
  }
}
@media (min-width: 1200px) {
  footer .bottom-footer-wrap {
    flex-direction: row;
  }
}
footer .bottom-footer-wrap .copyright-text {
  margin-bottom: 0;
}
footer .bottom-footer-wrap ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  footer .bottom-footer-wrap ul {
    margin-top: 0;
  }
}
footer .subscribe-wrap p {
  margin-top: 27px;
}
@media (min-width: 576px) {
  footer .subscribe-wrap p {
    margin-top: 35px;
  }
}
footer .subscribe-wrap .email-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid rgb(191, 212, 233);
  border-radius: 10px;
  padding: 8px 15px;
  gap: 12px;
}
footer .subscribe-wrap .email-input-wrap input {
  border-style: none;
  border-radius: 0px;
  padding: 0;
  font-size: 13px;
}
footer .subscribe-wrap .email-input-wrap input:focus {
  box-shadow: none;
  border-style: none;
}
footer .subscribe-wrap .email-input-wrap .submit-btn {
  border-style: none;
  background-color: transparent;
}
footer .subscribe-wrap .email-input-wrap .submit-btn span svg {
  font-size: 20px;
  fill: #43A1FF;
}

section.cta-section {
  min-height: 450px;
  display: flex;
  align-items: center;
  background-color: #2354a2;
}
@media (min-width: 576px) {
  section.cta-section {
    min-height: 550px;
  }
}
@media (min-width: 1200px) {
  section.cta-section {
    min-height: 720px;
  }
}
section.cta-section .heading h5 {
  font-weight: 600;
}

.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 87%;
  height: 100%;
  background-color: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: 0.3s ease-out;
  max-width: 425px;
  transition-delay: 0.1s;
  overflow-y: scroll;
}
.mobile-nav-wrapper .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-block: 1px solid #e7ecf3;
}
.mobile-nav-wrapper .nav-header .nav-logo {
  max-width: 200px;
  margin-bottom: 0;
  margin-left: 20px;
}
.mobile-nav-wrapper .nav-header .nav-close-btn {
  border-style: none;
  background-color: transparent;
  height: 60px;
  width: 60px;
  border-left: 1px solid #dbe4f2;
}
.mobile-nav-wrapper .nav-header .nav-close-btn span {
  font-size: 20px;
}
.mobile-nav-wrapper .nav-header .nav-close-btn span svg {
  fill: #666496;
  font-size: 30px;
}
.mobile-nav-wrapper .nav-body {
  padding: 30px 0;
  position: relative;
  overflow-y: scroll;
}
.mobile-nav-wrapper .nav-body .bg-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  opacity: 0.05;
  pointer-events: none;
}
.mobile-nav-wrapper .nav-body ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.mobile-nav-wrapper .nav-body ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #666496;
  font-weight: 600;
}
@media (min-width: 992px) {
  .mobile-nav-wrapper .nav-body ul li a {
    font-size: 16px;
  }
}
.mobile-nav-wrapper .nav-body ul li a .dropdown-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8px;
  width: 8px;
  flex: none;
}
.mobile-nav-wrapper .nav-body ul li a .dropdown-icon svg {
  height: 100%;
  width: 100%;
}
.mobile-nav-wrapper .nav-body ul li a::after {
  display: none;
}
.mobile-nav-wrapper .nav-body ul li a:not(.collapsed) {
  background-color: transparent;
  box-shadow: unset;
}
.mobile-nav-wrapper .nav-body ul li a:focus {
  box-shadow: none;
}

section.contact-us {
  background-color: #e8f6ff;
}

section.team {
  background-color: #e8f6ff;
}

section.project-details {
  background-color: #e8f6ff;
}

section.investor-financials h3 {
  font-size: 22px;
  color: #423F88;
  font-weight: 600;
  margin-top: 30px;
}
@media (min-width: 576px) {
  section.investor-financials h3 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  section.investor-financials h3 {
    font-size: 30px;
    margin-top: 50px;
  }
}
section.investor-financials .financial-stat-card {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  padding: 12px 12px;
  border-radius: 10px;
  transition: 0.3s;
}
@media (min-width: 576px) {
  section.investor-financials .financial-stat-card {
    padding: 15px 20px;
  }
}
section.investor-financials .financial-stat-card .icons-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.investor-financials .financial-stat-card .icons-wrap .icon svg {
  font-size: 22px;
}
@media (min-width: 576px) {
  section.investor-financials .financial-stat-card .icons-wrap .icon svg {
    font-size: 28px;
  }
}
section.investor-financials .financial-stat-card .icons-wrap .badge {
  color: #EF4323;
  background-color: rgba(239, 67, 35, 0.12);
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 50em;
}
@media (min-width: 576px) {
  section.investor-financials .financial-stat-card .icons-wrap .badge {
    font-size: 12px;
  }
}
section.investor-financials .financial-stat-card .content-wrap {
  margin-top: 15px;
}
section.investor-financials .financial-stat-card .content-wrap h5 {
  font-size: 14px;
  color: #666496;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.investor-financials .financial-stat-card .content-wrap h5 {
    font-size: 16px;
  }
}
section.investor-financials .financial-stat-card .content-wrap h4 {
  color: #423F88;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 576px) {
  section.investor-financials .financial-stat-card .content-wrap h4 {
    font-size: 28px;
    margin-bottom: 8px;
  }
}
section.investor-financials .financial-stat-card .content-wrap .past-info {
  font-size: 12px;
}
section.investor-financials .financial-stat-card .content-wrap .past-info.positive {
  color: #1acb81;
}
section.investor-financials .financial-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
section.investor-financials .document-card {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-radius: 10px;
  padding: 18px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}
section.investor-financials .document-card h4 {
  font-size: 16px;
  color: #423F88;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.investor-financials .document-card h4 {
    font-size: 18px;
  }
}
section.investor-financials .document-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: translateY(-3px);
}

.enquire-now-wrapper {
  position: fixed;
  z-index: 10;
  background: #423F88;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  bottom: 30px;
  right: 12px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .enquire-now-wrapper {
    bottom: 50%;
    right: 22px;
    transform: translateY(-100%) rotate(270deg);
    transform-origin: right center;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
  }
}
.enquire-now-wrapper a {
  display: block;
  text-decoration: none;
  padding: 15px 15px;
}
.enquire-now-wrapper a span {
  color: #fff !important;
}
@media (min-width: 768px) {
  .enquire-now-wrapper a {
    padding: 12px 20px;
  }
}
@media (min-width: 768px) {
  .enquire-now-wrapper:hover {
    background-color: #43A1FF;
  }
}

section.investor-queries {
  background-color: #e8f6ff;
}

section.testimonial {
  background-color: #e8f6ff;
}
section.testimonial .testimonial-slider {
  width: 100%;
  margin-top: 2rem;
}
section.testimonial .testimonial-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.testimonial-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.103);
}
.testimonial-card:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}
.testimonial-card:hover .thumbnail-image {
  opacity: 0.8;
}
.testimonial-card .testimonial-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  cursor: pointer;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3137254902);
  display: block;
  text-decoration: none;
}
.testimonial-card .testimonial-thumbnail .thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.testimonial-card .testimonial-thumbnail .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.testimonial-card .testimonial-thumbnail .play-button-overlay .play-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.testimonial-card .testimonial-thumbnail .play-button-overlay .play-icon .play-circle {
  fill: rgba(255, 255, 255, 0.9);
  stroke: none;
}
.testimonial-card .testimonial-thumbnail .play-button-overlay .play-icon .play-triangle {
  fill: #43A1FF;
}
.testimonial-card .testimonial-info {
  padding: 16px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-card .testimonial-info h4 {
  font-size: 18px;
  font-weight: 600;
}
.testimonial-card .testimonial-info .description-pdf-arrow {
  background-color: #43a1ff;
  padding: 5px;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-card .testimonial-info .description-pdf-arrow svg {
  fill: #fff;
  font-size: 22px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* shimmer animation */
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}


/* --- NATIVE CSS SLIDER --- */
.native-slider { width: 100%; overflow: hidden; }
.slider-track { width: 100%; }
.slider-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1.5rem;
}
.slider-list::-webkit-scrollbar { display: none; }
.slider-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}

/* Adjust sizes for different sliders */
.sustainability-slider .slider-slide { flex: 0 0 85%; }
@media (min-width: 768px) { .sustainability-slider .slider-slide { flex: 0 0 45%; } }
@media (min-width: 992px) { .sustainability-slider .slider-slide { flex: 0 0 30%; } }
@media (min-width: 1200px) { .sustainability-slider .slider-slide { flex: 0 0 22%; } }

.testimonial-slider-container .slider-slide { flex: 0 0 90%; }
@media (min-width: 768px) { .testimonial-slider-container .slider-slide { flex: 0 0 45%; } }
@media (min-width: 1024px) { .testimonial-slider-container .slider-slide { flex: 0 0 30%; } }
