@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
/* =============================Common styles */
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@200..700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 0.8rem;
  }
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #1F1F1F;
  font-family: "Instrument Sans", sans-serif;
}

img {
  max-width: 100%;
}

.global-width {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .global-width {
    max-width: 1240px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .global-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.3rem;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 0.3rem;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 2rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* Burger Menu */
}
.header .global-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .logo img {
  width: 17rem;
}
.header .nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.header .nav-menu ul li a {
  text-decoration: none;
  color: #0A0A0A;
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.3s ease;
  opacity: 0.8;
}
.header .nav-menu ul li a.active {
  color: #0A0A0A;
  font-weight: 600;
}
.header .contact-btn {
  padding: 1rem 2rem;
  border: 1px solid #13365A;
  border-radius: 1.2rem;
  width: 13.7rem;
  height: 4.8rem;
  font-weight: 500;
  color: #13365A;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .header .contact-btn {
    padding: 1rem 1rem;
    width: 9.7rem;
    height: 4rem;
    font-size: 1.4rem;
  }
}
.header .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 12px -6px rgba(0, 0, 0, 0.15), 0 25px 30px -5px rgba(0, 0, 0, 0.12);
}
.header .mobile-btn {
  display: none;
}
.header.scrolled {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  margin-left: 1rem;
}
.header .burger-menu span {
  width: 2.5rem;
  height: 0.3rem;
  background: #000;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 767px) {
  .header .global-width {
    position: relative;
  }
  .header .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.12);
    padding: 2rem 0;
  }
  .header .nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .header .nav-menu .mobile-btn {
    display: block;
    margin-top: 1.5rem;
  }
  .header .nav-menu.open {
    display: flex;
  }
  .header .desktop-btn {
    display: none;
  }
  .header .burger-menu {
    display: flex;
  }
}

body.home-page header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
body.home-page header.scrolled {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sub-para {
  font-size: 1.8rem;
  color: #8F8F8F;
  font-weight: 400;
  line-height: 30px;
  margin-top: -2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .sub-para br {
    display: none;
  }
}

.sub-head {
  font-size: 4rem;
  font-weight: 500;
  color: #212121;
  line-height: 58px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 3rem;
    line-height: 44px;
  }
  .sub-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-head {
    font-size: 3rem;
    line-height: 44px;
  }
  .sub-head br {
    display: none;
  }
}

.main-head {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 85px;
  letter-spacing: -2px;
}
@media only screen and (max-width: 767px) {
  .main-head {
    font-size: 4rem;
    line-height: 61px;
  }
  .main-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-head {
    line-height: 68px;
    font-size: 5.4rem;
  }
}

.ct-section {
  padding: 10rem 0;
  /* === Image Cards (No animation, visible by default) === */
  /* === Desktop Image Layout === */
  /* === Mobile/Tablet Single Image === */
}
@media only screen and (max-width: 767px) {
  .ct-section {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section {
    padding: 4rem 0;
    margin-top: 7rem;
  }
}
.ct-section .global-width {
  position: relative;
  overflow: hidden;
}
.ct-section .ct-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: #13365A;
  border-radius: 1.6rem;
  padding: 4rem 3rem;
  height: 72.4rem;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-wrapper {
    display: grid;
    height: auto;
  }
}
.ct-section .ct-wrapper .sub-para {
  opacity: 0.8;
}
.ct-section .ct-left {
  width: 76rem;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-left {
    width: 100%;
  }
}
.ct-section .ct-left .sub-para {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .sub-para {
    margin-bottom: 3rem;
    margin-top: -1rem;
  }
}
.ct-section .ct-left .ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #fff;
  color: #13365A;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1.4rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .ct-btn {
    font-size: 1.3rem;
    padding: 1rem 1rem;
    font-weight: 500;
  }
}
.ct-section .ct-left .ct-btn img {
  width: 2rem;
  height: 2rem;
  display: inline-block;
}
.ct-section .ct-left .ct-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.ct-section .ct-right {
  flex: 1;
  position: relative;
  min-height: 480px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-right {
    display: none;
  }
}
.ct-section .img-card {
  position: absolute;
  background: #0E2339;
  overflow: visible;
  width: 28.2rem;
  height: 24rem;
  cursor: default; /* No pointer */
  transition: none;
}
.ct-section .img-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1; /* always visible */
  transition: none;
}
.ct-section .card-main-top {
  top: 0;
  right: 120px;
  z-index: 3;
}
.ct-section .card-main-top img {
  top: 25px;
  left: 22px;
  width: 26rem;
  height: 23rem;
}
.ct-section .card-half-top {
  top: -192px;
  right: -79px;
  width: 17.7rem;
  height: 24rem;
  z-index: 1;
  opacity: 0.6;
}
.ct-section .card-main-bottom {
  bottom: -100px;
  right: 12px;
  width: 28.8rem;
  height: 30rem;
  z-index: 3;
}
.ct-section .card-main-bottom img {
  top: 22px;
  left: 71px;
  width: 33.6rem;
  height: 25.8rem;
}
.ct-section .card-half-bottom {
  bottom: 215px;
  right: -113px;
  width: 12.9rem;
  height: 19.7rem;
  z-index: 1;
  opacity: 0.6;
}
.ct-section .mobile-img {
  display: none;
  position: relative;
  width: 100%;
  height: auto;
  background: none;
}
.ct-section .mobile-img img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .card-main-top,
  .ct-section .card-half-top,
  .ct-section .card-main-bottom,
  .ct-section .card-half-bottom {
    display: none;
  }
  .ct-section .mobile-img {
    display: block;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-wrapper {
    flex-direction: column;
    gap: 2rem;
    height: auto;
    padding: 3rem 1rem;
  }
  .ct-section .ct-left {
    width: 100%;
    text-align: center;
  }
  .ct-section .ct-right {
    width: 100%;
    min-height: auto;
    position: relative;
  }
  .ct-section .card-main-top,
  .ct-section .card-half-top,
  .ct-section .card-main-bottom,
  .ct-section .card-half-bottom {
    display: none;
  }
  .ct-section .mobile-img {
    display: block;
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .abt-ashgour {
    margin-top: -2rem;
  }
}
.abt-ashgour .sub-head {
  text-align: center;
}
.abt-ashgour .sub-head span {
  color: #3373B5;
}
@media only screen and (max-width: 767px) {
  .abt-ashgour .sub-head {
    font-size: 2.5rem;
  }
  .abt-ashgour .sub-head br {
    display: none;
  }
}
.abt-ashgour .img-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .abt-ashgour .img-sec {
    margin-top: 4rem;
  }
}

.features-section {
  background: #fff;
  padding: 8rem 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .features-section {
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section {
    padding: 5rem 0;
  }
}
.features-section .sub-para {
  line-height: 28px;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .features-section .sub-para {
    margin-top: 2rem;
  }
}
.features-section .features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid {
    flex-direction: column;
    margin-top: 0;
  }
}
.features-section .features-grid .feature-card {
  position: relative;
  border-radius: 1.6rem;
  padding: 3rem 2rem;
  flex: 1 1 calc(50% - 1rem);
  height: 71.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card {
    flex: 1 1 100%;
    padding: 2rem;
    min-height: 40rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .features-grid .feature-card {
    height: 56.5rem;
  }
}
.features-section .features-grid .feature-card.full-width {
  flex: 1 1 100%;
}
.features-section .features-grid .feature-card:hover {
  transform: translateY(-5px);
}
.features-section .features-grid .feature-card .card-content {
  position: relative;
  z-index: 2;
}
.features-section .features-grid .feature-card .card-content h3 {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 44px;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card .card-content h3 {
    font-size: 2.6rem;
    margin: 0;
    line-height: 38px;
  }
}
.features-section .features-grid .feature-card .img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.features-section .features-grid .feature-card .img-box img {
  width: 100%;
  opacity: 1;
  transform: none;
}
.features-section .features-grid .feature-card.blue {
  background: #F6F6F6;
}
.features-section .features-grid .feature-card.green {
  background: #F6F6F6;
}
.features-section .features-grid .feature-card.purple {
  background: #F6F6F6;
}
.features-section .features-grid .feature-card.purple.full-width {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem;
  height: auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width {
    padding: 2rem;
  }
}
.features-section .features-grid .feature-card.purple.full-width .card-content {
  flex: 0 0 50%;
  z-index: 2;
  position: relative;
}
.features-section .features-grid .feature-card.purple.full-width .card-content h3 {
  margin-bottom: 1.5rem;
  color: #212121;
}
.features-section .features-grid .feature-card.purple.full-width .card-content .sub-para {
  margin: 0;
}
.features-section .features-grid .feature-card.purple.full-width .img-box {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.features-section .features-grid .feature-card.purple.full-width .img-box img {
  position: relative;
  width: 100%;
  max-width: 508px;
  opacity: 1;
  transform: none;
  top: 4rem;
  left: 4rem;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width .img-box img {
    top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width {
    flex-direction: column;
    text-align: center;
  }
  .features-section .features-grid .feature-card.purple.full-width .card-content,
  .features-section .features-grid .feature-card.purple.full-width .img-box {
    flex: 1 1 100%;
    text-align: center;
  }
  .features-section .features-grid .feature-card.purple.full-width .img-box {
    margin-top: 2rem;
    justify-content: center;
  }
}

.section-ct {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .section-ct {
    padding: 3rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-ct {
    padding: 3rem 0;
  }
}
.section-ct .global-width {
  position: relative;
}
.section-ct .global-width .ct-bg {
  position: relative;
  background: #13365A;
  overflow: hidden;
  padding: 10rem 0;
  text-align: center;
  color: #fff;
  border-radius: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .section-ct .global-width .ct-bg {
    padding: 3rem 2rem;
    height: 23rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-ct .global-width .ct-bg {
    padding: 4rem 0;
  }
}
.section-ct .global-width .ct-bg .ct-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.section-ct .global-width .ct-bg .ct-bg-img img {
  width: 100%;
  height: 45.3rem;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}
@media only screen and (max-width: 767px) {
  .section-ct .global-width .ct-bg .ct-bg-img img {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-ct .global-width .ct-bg .ct-bg-img img {
    display: none;
  }
}
.section-ct .global-width .ct-bg .ct-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .section-ct .global-width .ct-bg .ct-content {
    gap: 5rem;
  }
}
.section-ct .global-width .ct-bg .ct-content h2 {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -2px;
  text-align: center;
  margin-left: 55rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .section-ct .global-width .ct-bg .ct-content h2 {
    font-size: 2.6rem;
    line-height: 1.3;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-ct .global-width .ct-bg .ct-content h2 {
    margin-left: 0;
    line-height: 55px;
    font-size: 4.4rem;
  }
}
.section-ct .global-width .ct-bg .ct-content .btn-class {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5rem;
  margin-left: 55rem;
}
@media only screen and (max-width: 767px) {
  .section-ct .global-width .ct-bg .ct-content .btn-class {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-ct .global-width .ct-bg .ct-content .btn-class {
    margin-top: -3rem;
    margin-left: 0;
  }
}
.section-ct .global-width .ct-bg .ct-content .btn-class .cta-btn {
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  display: flex;
  color: #13365A;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .section-ct .global-width .ct-bg .ct-content .btn-class .cta-btn {
    font-size: 1.3rem;
    padding: 1.2rem 1.4rem;
  }
}
.section-ct .global-width .ct-bg .ct-content .btn-class .cta-btn:hover {
  background: #f4f4f4;
  transform: translateY(-3px);
}
.section-ct .global-width .ct-bg .ct-content .btn-class .cta-btn span {
  transition: transform 0.3s ease;
}
.section-ct .global-width .ct-bg .ct-content .btn-class .cta-btn:hover span {
  transform: translateX(5px);
}

.contact-section {
  position: relative;
  padding: 6rem 0;
}
.contact-section .contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  background: #8A5CFF;
  height: 23.2rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header {
    height: 17.2rem;
    margin-bottom: 2rem;
  }
}
.contact-section .contact-header .main-head {
  display: inline-block;
  margin-top: 7rem;
  color: #fff;
  padding: 1.5rem 4rem;
  border-radius: 1rem;
  background: #8A5CFF;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-size: 5.6rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header .main-head {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    margin-top: 2rem;
    font-size: 4rem;
    line-height: 68px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-para {
    text-align: center;
  }
}
.contact-section .contact-content {
  gap: 5rem;
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content {
    flex-direction: column;
  }
}
.contact-section .contact-content .contact-left {
  flex: 1;
}
.contact-section .contact-content .contact-left .contact-info .details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det {
  display: grid;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
  margin: 0;
  color: #1F1F1F;
  font-size: 1.6rem;
  font-weight: 500;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p {
  color: #5F6368;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p a {
  text-decoration: none;
  color: inherit;
}
.contact-section .contact-content .contact-right {
  flex: 1;
  position: sticky;
  top: 10rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right {
    width: 100%;
  }
}
.contact-section .contact-content .contact-right form {
  background: #F6F6FF;
  padding: 3rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form {
    padding: 2rem;
  }
}
.contact-section .contact-content .contact-right form .form-group {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form .form-group {
    display: grid;
  }
}
.contact-section .contact-content .contact-right form input,
.contact-section .contact-content .contact-right form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-family: "Instrument Sans", sans-serif;
  border: none;
}
.contact-section .contact-content .contact-right form textarea {
  min-height: 12rem;
  resize: none;
}
.contact-section .contact-content .contact-right form button {
  background: linear-gradient(90deg, #4da3ff, #8A5CFF);
  color: #fff;
  border: none;
  padding: 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-content .contact-right form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-section {
  background: #F6F3F3;
  padding: 6rem 0 3rem;
}
.footer-section .footer-inner .footer-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
.footer-section .footer-inner .footer-logo-area {
  max-width: 33%;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area {
    max-width: none;
  }
}
.footer-section .footer-inner .footer-logo-area .footer-logo img {
  max-width: 150px;
}
.footer-section .footer-inner .footer-logo-area .sub-para {
  line-height: 25px;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
.footer-section .footer-inner .footer-link {
  display: flex;
  flex-direction: column;
}
.footer-section .footer-inner .footer-link h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}
.footer-section .footer-inner .footer-link a {
  color: #8F8F8F;
  font-size: 1.4rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
}
.footer-section .footer-inner .footer-link a:hover {
  color: #8A5CFF;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-link {
    align-items: center;
  }
}
.footer-section .footer-inner .footer-social {
  text-align: center;
  margin-top: -4rem;
  gap: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    display: flex;
    justify-content: center;
  }
}
.footer-section .footer-inner .footer-social a img {
  width: 4rem;
  height: 4rem;
}
.footer-section .footer-inner .footer-social a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    margin-top: 1rem;
  }
}
.footer-section .copyright {
  text-align: center;
  font-size: 1.3rem;
  color: #8F8F8F;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .copyright {
    margin-top: 2rem;
  }
}

.about-hero-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .about-hero-section {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}
.about-hero-section .global-width {
  position: relative;
}
.about-hero-section .global-width .about-hero-bg {
  position: relative;
  background: #13365A;
  color: #fff;
  border-radius: 1.2rem;
  padding: 10rem 4rem;
  text-align: center;
  overflow: hidden;
  height: 66.9rem;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg {
    padding: 2rem 2rem;
    height: 55.9rem;
  }
}
.about-hero-section .global-width .about-hero-bg .spiral {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 106%;
  z-index: 1;
  opacity: 0.8;
}
.about-hero-section .global-width .about-hero-bg .spiral img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg .spiral img {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-hero-section .global-width .about-hero-bg .spiral img {
    width: 92%;
  }
}
.about-hero-section .global-width .about-hero-bg .about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.about-hero-section .global-width .about-hero-bg .about-hero-content .tag {
  display: inline-block;
  background: #fff;
  color: #13365A;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  margin-bottom: 1.4rem;
}
.about-hero-section .global-width .about-hero-bg .about-hero-content .main-head {
  font-size: 5.3rem;
  line-height: 66px;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .main-head {
    font-size: 3.2rem;
    line-height: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .main-head br {
    display: none;
  }
}
.about-hero-section .global-width .about-hero-bg .about-hero-content .sub-para {
  color: #fff;
  opacity: 0.8;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .sub-para {
    margin-top: 3rem;
  }
}

.building-ashgour {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .building-ashgour {
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour {
    padding: 3rem 0;
  }
}
.building-ashgour .ashgour-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper {
    gap: 0;
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper {
    gap: 0;
  }
}
.building-ashgour .ashgour-wrapper .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header {
    display: grid;
  }
}
.building-ashgour .ashgour-wrapper .section-header h2 {
  font-size: 4rem;
  font-weight: 600;
  color: #212121;
  margin-top: -2rem;
  width: 85.8rem;
  letter-spacing: -2px;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header h2 {
    font-size: 2.6rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header h2 {
    text-align: center;
    max-width: none;
  }
}
.building-ashgour .ashgour-wrapper .section-header .sub-para {
  margin-left: 12rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header .sub-para {
    text-align: center;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header .sub-para {
    margin-left: 0;
    text-align: center;
  }
}
.building-ashgour .ashgour-wrapper .section-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content {
    flex-direction: column;
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-content {
    display: grid;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-left img {
  width: 68.6rem;
  height: 64.8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-left img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-left img {
    width: 75.6rem;
    height: 38.8rem;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box {
  border: 1px solid #d6d6d6;
  padding: 3rem 2.5rem;
  height: 32.3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box {
    height: auto;
    padding: 1rem 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box {
    height: 23.3rem;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #13365A;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box h3 {
    margin-top: 1rem;
    font-size: 2.8rem;
    text-align: center;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box .sub-para {
  color: #5F6368;
  line-height: 26px;
  margin-top: 0rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .vision-box .sub-para {
    text-align: center;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right .approach-box {
  border-bottom: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  padding: 3rem 2.5rem;
  height: 32.3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .approach-box {
    height: 21.3rem;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right .approach-box h3 {
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #13365A;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .approach-box h3 {
    margin-top: 1rem;
    font-size: 2.8rem;
    text-align: center;
  }
}
.building-ashgour .ashgour-wrapper .section-content .ashgour-right .approach-box .sub-para {
  color: #5F6368;
  line-height: 26px;
  margin-top: 0rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-content .ashgour-right .approach-box .sub-para {
    text-align: center;
  }
}

.team-section {
  position: relative;
  padding: 5rem 0;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .team-section {
    padding: 3rem 0;
  }
}
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/your-bg-image.jpg") center/cover no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-section::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .team-section::before {
    display: none;
  }
}
.team-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #F9F9F9;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .team-section::after {
    height: 211rem;
  }
}
.team-section .global-width {
  position: relative;
  z-index: 2;
}
.team-section .team-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper {
    flex-direction: column;
    gap: 4rem;
  }
}
.team-section .team-wrapper .team-left {
  flex: 0 0 35%;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left {
    position: static;
  }
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left .tag {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.team-section .team-wrapper .team-left .tag .team-label {
  display: inline-block;
  background: #13365A;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.team-section .team-wrapper .team-left h2 {
  font-size: 3.2rem;
  line-height: 1.3;
  color: #13365A;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left h2 {
    margin: 1rem;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left h2 {
    font-size: 2.4rem;
  }
}
.team-section .team-wrapper .team-right {
  flex: 1;
  position: relative;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right {
    padding-bottom: 2rem;
  }
}
.team-section .team-wrapper .team-right .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-section .team-wrapper .team-right .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-section .team-wrapper .team-right .team-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}
.team-section .team-wrapper .team-right .team-card:hover {
  transform: translateY(-5px);
}
.team-section .team-wrapper .team-right .team-card img {
  width: 100%;
  height: auto;
  display: block;
}
.team-section .team-wrapper .team-right .team-card .team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(33, 33, 33, 0.4);
  color: #212121;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-card .team-info {
    height: 65px;
  }
}
.team-section .team-wrapper .team-right .team-card .team-info .name-role {
  display: flex;
  flex-direction: column;
}
.team-section .team-wrapper .team-right .team-card .team-info .name-role h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 2px 0;
  line-height: 1.2;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-card .team-info .name-role h4 {
    font-size: 1.4rem;
  }
}
.team-section .team-wrapper .team-right .team-card .team-info .name-role p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 1;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-card .team-info .name-role p {
    font-size: 1rem;
  }
}
.team-section .team-wrapper .team-right .team-card .team-info .linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.team-section .team-wrapper .team-right .team-card .team-info .linkedin-icon img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */