@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #1e4c68;
  --secondary-color: #c4ad69;
  --black: #000000;
  --white: #ffffff;
  --primary-font-family: "DM Serif Display", serif;
  --secondary-font-family: "Inter", sans-serif;
  --padding: clamp(60px, 8vw, 100px) 0;
}
body :where(h1) {
  font-family: var(--primary-font-family);
  text-transform: capitalize;
  color: var(--white);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
}
body :where(h2) {
  font-family: var(--primary-font-family);
  text-transform: capitalize;
  color: var(--black);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
}
body :where(h3) {
  font-family: var(--primary-font-family);
  text-transform: capitalize;
  color: var(--black);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
}
body :where(p) {
  font-family: var(--secondary-font-family);
  text-transform: capitalize;
  color: var(--black);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 18px);
}
body :where(a) {
  display: inline-block;
}
/*-----------------header-start------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  width: 100%;
  backdrop-filter: blur(15px);
  box-shadow: 0px 1px 24px -1px #0000002e;
  background: linear-gradient(
    117.54deg,
    rgba(255, 255, 255, 0.5) -19.85%,
    rgba(235, 235, 235, 0.367354) 4.2%,
    rgba(224, 224, 224, 0.287504) 13.88%,
    rgba(212, 212, 212, 0.21131) 27.98%,
    rgba(207, 207, 207, 0.175584) 37.8%,
    rgba(202, 202, 202, 0.143432) 44.38%,
    rgba(200, 200, 200, 0.126299) 50.54%,
    rgba(196, 196, 196, 0.1) 60.21%
  );
  padding: 10px 0px;
}
.logo {
  width: 100%;
}
/* =========================
   HEADER
========================= */

/* =========================
   HEADER
========================= */
header .row {
  display: flex;
  align-items: center;
}

/* =========================
   DESKTOP NAVIGATION
========================= */
.main-nav {
  width: 65%;
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav ul li {
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  text-decoration: none;
  white-space: nowrap;
}
/* =========================
   HEADER BOOK BUTTON
========================= */

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  margin-left: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #c4ad69;
  transition: all 0.3s ease;
}
/* =========================
   CLOSE BUTTON
========================= */
.menu-close {
  display: none;
}
/* =========================
   OVERLAY
========================= */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all 0.3s ease;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #c4ad69;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navication-ber {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-book-btn {
  text-decoration: none;
  color: var(--black);
  font-size: clamp(14px, 1.6vw, 18px);
  background-color: var(--white);
  padding: 20px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--secondary-font-family);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s linear;
}
.header-book-btn:hover {
  background-color: var(--secondary-color);
  transition: all 0.2s linear;
  color: var(--white);
}
.main-nav ul > li > a {
  font-size: 20px;
  font-family: var(--secondary-font-family);
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}
.current-menu-item a {
  border-bottom: 1px solid #c4ad69;
  color: #c4ad69 !important;
}
/*-----------------header-end------------------------*/
/*--------------------hero-section----------------------*/
.hero-section-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(30, 30, 30, 0) 9.45%,
    #1e1e1e 103.5%
  );
}
header > .container > .row{
  justify-content: space-between;
  align-items: center;
}
.logo > img{
  width: 100%;
}
.banner-section {
  position: absolute;
  z-index: 8;
}
.hero-banner > p {
  color: var(--white);
}
.hero-banner {
  width: 55%;
}
.hero-btn {
  display: flex;
  gap: 20px;
}
.advisor-btn {
  color: var(--white);
  background-color: #c4ad69;
  text-decoration: none;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1em;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  border-radius: 12px;
  width: 45%;
  transition: all 0.2s linear;
}
.advisor-btn:hover {
  color: var(--black);
  background-color: var(--white);
  transition: all 0.2s linear;
}
.discover-btn {
  border: 1px solid #ffffff33;
  background-color: #ffffff1a;
  color: var(--white);
  text-decoration: none;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  font-size: 1em;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  border-radius: 12px;
  width: 45%;
  transition: all 0.2s linear;
}
.discover-btn:hover {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
}
.hero-banner > p {
  margin-bottom: 60px;
}
.hero-banner > h1 {
  margin-bottom: 15px;
}
.card-name {
  position: absolute;
  z-index: 20;
  bottom: 15px;
  left: 20px;
}
.card-name > h5 {
  color: var(--white);
  font-size: 18px;
  font-family: var(--primary-font-family);
  font-weight: 400;
  margin-bottom: 0px;
}
.card-name > span {
  font-family: var(--secondary-font-family);
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
}
/* =========================
   BANNER CARD ANIMATION
========================= */
.card-imgbox,
.card-imgbox2,
.card-imgbox3 {
  --card-rotate: -11deg;
  position: absolute;
  width: 165px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  top: -35%;
  left: -206px;
  opacity: 0;
  transform: translateY(70px) scale(0.92) rotate(var(--card-rotate));
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition:
    box-shadow 0.5s ease,
    transform 0.5s ease;
}
.card-imgbox {
  animation:
    cardReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
    cardFloat 2.8s ease-in-out 1.5s infinite;
}
.card-imgbox2 {
  left: -245px;
  top: 75%;
  animation:
    cardReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards,
    cardFloat 3.1s ease-in-out 1.8s infinite;
}
.card-imgbox3 {
  --card-rotate: 11deg;
  left: 100%;
  top: 10%;
  animation:
    cardReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards,
    cardFloat 3.4s ease-in-out 2.1s infinite;
}
@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(70px) scale(0.92) rotate(var(--card-rotate));
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--card-rotate));
    filter: blur(0);
  }
}
.card-imgbox img,
.card-imgbox2 img,
.card-imgbox3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-name {
  opacity: 0;
  transform: translateY(20px);
  animation: nameReveal 0.8s ease 1s forwards;
}
@keyframes nameReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-imgbox:hover img,
.card-imgbox2:hover img,
.card-imgbox3:hover img {
  transform: scale(1.06);
}
.card-imgbox:hover,
.card-imgbox2:hover,
.card-imgbox3:hover {
  transform: translateY(-8px) rotate(var(--card-rotate));
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--card-rotate));
  }
  50% {
    transform: translateY(-10px) rotate(var(--card-rotate));
  }
}
.about-section {
  position: relative;
  background: linear-gradient(
    180deg,
    #040b15 -23.02%,
    #1e4c68 29.22%,
    #67a6c5 63.6%,
    #b7cccd 108.38%
  );
  z-index: 1;
}
.about-img {
  width: 100%;
  height: 700px;
}
.about-img > img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.card-imgbox::after,
.card-imgbox2::after,
.card-imgbox3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.35%, #000 116.77%);
}
.about-text {
  margin-left: 30px;
}
.about-text > h2 {
  color: var(--white);
  margin-bottom: 30px;
}
.about-text > p {
  color: var(--white);
  margin-bottom: 25px;
}
.learn-button {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  font-size: 18px;
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #ffffff33;
  background-color: #ffffff1a;
  display: inline-flex;
  margin-top: 20px;
  color: var(--white);
  transition: all 0.2s linear;
}
.learn-button:hover {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
  transition: all 0.2s linear;
}
.about-shape {
  height: 700px;
}
.about-shape > img {
  height: 100%;
}
.about-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.rotate-text {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 30;
}
.rotate-text > span {
  font-size: 130px;
  border-image-source: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.62) 100%
  );
  border-image-slice: 1;
  text-transform: capitalize;
  font-family: var(--primary-font-family);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  background-color: transparent;
}
/*-----------------------------about-section---------------------------*/

/*---------------------service-section----------------------------*/
/* =========================
   SERVICES SLIDER
========================= */
.services-section {
  overflow: hidden;
  background: linear-gradient(90deg, #8fbfdb 0%, #e6f6ff 100%);
  padding: var(--padding);
}
.services-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-prev {
  background-color: var(--primary-color);
}
.services-prev,
.services-next {
  border: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 12px;
}
.services-slider {
  width: 100%;
  overflow: hidden;
  padding: 0px 20px;
  margin-bottom: 50px;
}
.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  overflow: hidden;
}
.service-card {
  flex: 0 0 calc((100% - 80px) / 5);
  background: #ffffff80;
  padding: 12px 12px 90px 12px;
  border-radius: 12px;
  position: relative;
}
.service-card > a.knowMore-btn {
    position: absolute;
    bottom: 30px;
}
.service-img {
  width: 100%;
  overflow: hidden;
  height: 325px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.service-img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-content h3 {
  margin-bottom: 10px;
}
.service-content p {
  margin-bottom: 15px;
}
.services-button {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.service-content > h3 {
  height: auto;
  margin-bottom: 15px;
}
.service-content > p {
  height: auto;
  margin-bottom: 30px;
}
.services-header {
  margin-bottom: 50px;
}
.knowMore-btn,
.view-service-btn {
  background-color: var(--primary-color);
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  padding: 15px 15px;
  border-radius: 12px;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s linear;
}
.knowMore-btn:hover,
.view-service-btn:hover {
  background-color: var(--secondary-color);
  transition: all 0.2s linear;
  color: var(--white);
}
.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.services-slider {
  overflow: hidden;
}

.services-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-header h2 {
  margin: 0;
  text-align: center;
}
.services-arrows {
  position: absolute;
  gap: 10px;
  margin-left: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-prev,
.services-next {
  margin: 0;
}
/*------------------------service-section-----------------------------*/
/*----------------banner-box--------------------*/
.banner-box {
  background: url("../images/contorl-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 700px;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.banner-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  opacity: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.banner-box > div {
  text-align: center;
  width: 50%;
}
.banner-box > div > h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.banner-box > div > p {
  color: var(--white);
  margin-bottom: 50px;
}
/*---------------banner-box------------------*/
/*-----------------work-section-start-----------------------*/
.work-section {
  width: 100%;
  padding: var(--padding);
  background: radial-gradient(
    111.85% 111.85% at 50% -30.01%,
    #fffbf5 0%,
    #dbc195 100%
  );
  position: relative;
  overflow: hidden;
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../shape/work-shape.png") center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.work-section > * {
  position: relative;
  z-index: 1;
}
.work-card-img {
  width: 100%;
  height: 270px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
.work-card-text > p {
  margin-bottom: 0px;
}
.work-card-text > h3 {
  margin-bottom: 10px;
}
.work-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-titel {
  text-align: center;
  margin-bottom: 50px;
}
.work-section > .container > .row {
  justify-content: space-between;
  align-items: center;
}
/*-----------------------------work-section-end---------------------*/
/*----------------------owl-slider-start---------------------------*/
.testimonial-section {
  width: 100%;
  padding: var(--padding);
  overflow: hidden;
  background-color: #dbc195;
  background-image: url("../shape/owl-shape.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.testimonial-heading {
  margin: 0 0 18px;
}
.hjyt {
  margin-top: -150px;
}
.testimonial-heading h2 {
  margin-bottom: 50px;
}
.testimonial-slider {
  width: 100%;
}
.testimonial-card {
  width: 100%;
  padding: 30px 30px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    #040b15 -23.02%,
    #1e4c68 29.22%,
    #67a6c5 63.6%,
    #b7cccd 108.38%
  );
  color: #fff;
  overflow: hidden;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-user-info {
  margin: 0;
}
.testimonial-user-info > h3 {
  color: var(--white);
  margin-bottom: 0px;
}
.testimonial-user-info span {
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
  font-family: var(--secondary-font-family);
  margin-top: 10px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 30px;
}
.testimonial-stars i {
  line-height: 1;
}
.testimonial-card p {
  color: var(--white);
  margin-bottom: 0;
}
.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.testimonial-navigation button {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}
.testimonial-navigation button i {
  line-height: 1;
}
.testimonial-prev {
  background: var(--primary-color);
  color: var(--white);
}
.testimonial-next {
  background: transparent;
  color: #1d526f;
}
.testimonial-navigation button:hover {
  background: var(--primary-color);
  color: var(--white);
}
.testimonial-slider .owl-stage {
  display: flex;
}
.testimonial-slider .owl-item {
  display: flex;
}
.testimonial-slider .testimonial-card {
  height: 100%;
  height: 340px;
}
.testimonial-slider {
  width: calc(100vw - 200px);
  margin-left: calc((100% - 100vw) / 2 + 100px);
  overflow: hidden;
}
.testimonial-slider .owl-stage-outer {
  overflow: hidden;
}
.testimonial-slider .owl-stage {
  display: flex;
  align-items: stretch;
}
.testimonial-slider .owl-item {
  display: flex;
}
.testimonial-card {
  width: 100%;
}
.testimonial-navigation {
  width: calc(100vw - 200px);
  margin: 55px 0 0;
  margin-left: calc((100% - 100vw) / 2 + 100px);
}
@media (max-width: 767px) {
  .testimonial-slider {
    width: 100%;
    margin-left: 0;
  }
  .testimonial-navigation {
    width: 100%;
    margin-left: 0;
  }
}
/*--------------------owl-slider-end---------------------*/
/*--------------------accourding-section-start---------------------------*/
.faq-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: var(--padding);
  background:
    linear-gradient(
      180deg,
      rgba(164, 204, 228, 0.75) 0%,
      rgba(221, 239, 251, 0.75) 100%
    ),
    url("../shape/faq-shape.png") center/cover no-repeat;
}
.faq-heading {
  margin-bottom: 50px;
}
.faq-accordion {
  width: 100%;
}
.faq-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(50, 90, 110, 0.45);
}
.faq-question {
  width: 100%;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 20px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-align: left;
  cursor: pointer;
  color: #111;
  line-height: 1.2;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}
.faq-heading > h2 {
  margin-bottom: 25px;
}
.faq-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
}
.faq-heading > p {
  max-width: 740px;
  margin: auto;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  margin: 0;
  padding: 0;
}
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: 0 7px;
  line-height: 1.25;
  color: #222;
  transition: padding 0.3s ease;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.active .faq-answer-inner {
  padding: 0 7px 7px;
}
/*--------------------accourding-section-end---------------------------*/
/*--------------blog-section-start-----------------*/
.blog-section {
  position: relative;
  z-index: 1;
  padding: var(--padding);
  background: radial-gradient(
    111.85% 111.85% at 50% -30.01%,
    #fffbf5 0%,
    #dbc195 100%
  );
}
.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../shape/blog-shape.png") center/cover no-repeat;
  z-index: -1;
}
.blog-section > h2 {
  text-align: center;
  margin-bottom: 50px;
}
.blog-card-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.border-card-text > h3 {
  margin-bottom: 0;
}
.read-btn {
  margin-top: 40px;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 15px;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.2s linear;
}
.read-btn:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.2s linear;
  color: var(--white);
}
/*--------------------blog-section-end---------------------------*/
/*----------------------footer-start------------------------*/
footer {
  background-color: #1e4c68;
  background-image: url("../shape/footer-shape.png");
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  overflow: hidden;
}
footer::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url("../shape/footer-shape-retangel.png") right top/contain
    no-repeat;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.footer-list {
  padding: 130px 0px 0px 0px;
}
.icon-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-list a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff80;
  color: #1e4c68;
  text-decoration: none;
  transition: all 0.3s ease;
}
.icon-list > a:first-child {
  background-color: var(--white);
}
.icon-list a:hover {
  background: #fff;
  transform: translateY(-3px);
}
.icon-list i {
  font-size: 20px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo-box > p {
  color: var(--white);
  margin-bottom: 30px;
}
.link-list > ul {
  padding: 0;
  margin: 0;
}
.link-list > h3 {
  color: var(--white);
  margin-bottom: 30px;
}
.link-list > ul > li {
  list-style: none;
  margin-bottom: 12px;
}
.link-list > ul > li:last-child {
  margin-bottom: 0px;
}
.link-list > ul > li > a {
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--secondary-font-family);
  text-transform: capitalize;
}
.location,
.email {
  margin-bottom: 20px;
}
.location > h4,
.email > h4,
.number > h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--secondary-font-family);
  margin-bottom: 10px;
}
.location > address,
.email > a,
.number > a {
  margin-bottom: 0;
  color: var(--white);
  line-height: 140%;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--secondary-font-family);
  text-decoration: none;
}
.copyright {
  border-top: 1px solid #ffffff80;
  padding: 25px 0px;
}
.developer-text {
  margin-bottom: 0;
  text-align: right;
}
.view-all-btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.copyright-text {
  margin-bottom: 0;
}
.copyright-text,
.copyright-text > a,
.developer-text,
.developer-text > a {
  color: var(--white);
  font-size: 16px;
  font-family: var(--secondary-font-family);
  font-weight: 400;
  text-decoration: none;
}
.taxulting > span {
  font-size: 85px;
  border-image-source: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.62) 100%
  );
  border-image-slice: 1;
  text-transform: capitalize;
  font-family: var(--primary-font-family);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  background-color: transparent;
  display: flex;
  justify-content: center;
}
/*-------------------------------footer-end-------------------*/
/*-------------------about-page-css----------------------*/

/*-------------------about-section--------------------------*/
.about-section-banner {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 20%;
}
.about-section-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-titel {
  position: absolute;
  z-index: 1;
}
/*--------------about-section--------------------*/

/*-----------------team-section-start-------------------------*/
.team-section {
  background:
    url("../shape/team-shape.png") center / cover no-repeat,
    radial-gradient(111.85% 111.85% at 50% -30.01%, #fffbf5 0%, #dbc195 100%);
  padding: var(--padding);
}
.team-img-card {
  width: 100%;
  height: 245px;
  overflow: hidden;
  transition: all 0.2s linear;
  border-radius: 15px;
  position: relative;
  box-shadow: 1px 6px 20.9px 0px #0000000d;
  cursor: pointer;
}
.team-img-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    #000000 -19.7%,
    rgba(0, 0, 0, 0.5) 15.23%,
    rgba(0, 0, 0, 0) 32.2%
  );
}
.team-img-card:hover img {
  transition: all 0.2s linear;
  transform: scale(1.04);
}
.team-img-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}
.team-img-text {
  position: absolute;
  bottom: 10%;
  z-index: 1;
  text-align: center;
  width: 100%;
  margin: auto;
}
.team-img-text > h5 {
  color: var(--white);
  font-size: 1em;
  font-weight: 700;
  font-family: var(--secondary-font-family);
  text-transform: capitalize;
  margin-bottom: 0px;
}
.team-img-text > span {
  font-size: 12px;
  color: var(--white);
  font-weight: 400;
  font-family: var(--secondary-font-family);
  text-transform: capitalize;
}
.team-text {
  text-align: center;
  margin-bottom: 60px;
}
.team-text > h2 {
  margin-bottom: 20px;
}
.team-text > p {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 0;
}
/*-----------------team-section-end-------------------------*/
/*-----------------counting-start----------------------*/
.counting {
  background: linear-gradient(176.02deg, #dedede -8.16%, #ffffff 96.75%);
  padding: var(--padding);
}
.counting-title {
  text-align: center;
  margin-bottom: 50px;
}
.counting-card {
  background: linear-gradient(
    180deg,
    #040b15 -23.02%,
    #1e4c68 29.22%,
    #67a6c5 63.6%,
    #b7cccd 108.38%
  );
  height: 220px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
}
.counting-card > span {
  color: var(--white);
  font-weight: 400;
  font-family: var(--secondary-font-family);
  font-size: 18px;
}
h1.counter,
h1.counter1 {
  margin-bottom: 0px;
}
/*-------------------counting-end--------------------------*/
/*-----------------------------mission-vission---------------------------------*/
.our-vission-mission {
  background:
    url("../shape/our-vission-mission-shape.png") center / cover no-repeat,
    linear-gradient(90deg, #8fbfdb 0%, #e6f6ff 100%);
  padding: var(--padding);
}
.our-vission-img {
  width: 100%;
  height: 475px;
  border-radius: 30px;
  overflow: hidden;
}
.our-vission-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-vission-mission > .container > .row {
  row-gap: 200px;
}
/*-----------------------------mission-vission---------------------------------*/

/*----------------------our-service-css------------------------*/

/*---------------------service-provid-section--------------------*/
.service-provid-section {
  background:
    url("../shape/provid-shape.png") center / cover no-repeat,
    linear-gradient(90deg, #8fbfdb 0%, #e6f6ff 100%);
  padding: var(--padding);
}
.service-provid-section > .container > .row {
  row-gap: 40px;
}
.service-provid-section {
  text-align: center;
}
.provide-titel > h2 {
  margin-bottom: 10px;
}
.service-content {
  text-align: left;
}
/*------------------------------------*/
/*------------------serve-section-box----------------------*/
.serve-section-box {
  background:
    url("../shape/serve-shape.png") center / cover no-repeat,
    radial-gradient(111.85% 111.85% at 50% -30.01%, #fffbf5 0%, #dbc195 100%);
  padding: var(--padding);
}
.serve-titel {
  text-align: center;
}
.serve-box-card {
  background-color: #ffffff80;
  padding: 20px;
  width: 100%;
  border-radius: 30px;
}
.serve-img-content {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.serve-img-content > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}
.serve-img-content:hover img {
  transition: all 0.2s linear;
  transform: scale(1.04);
}
.serve-content-text > h3 {
  margin-bottom: 30px;
}
.serve-content-text > p {
  margin-bottom: 40px;
}
.serve-section-box > .container > .row {
  row-gap: 40px;
}
/*--------------------------------------------------*/

/*----------------faq-css-start------------------*/

/*-----------------------------faq-section-----------------------------*/
.faq-section {
    background:
        url("../shape/faq-shape1.png") center / cover no-repeat,
        linear-gradient(90deg, #8fbfdb 0%, #e6f6ff 100%);
    padding: var(--padding);
}
.testimonial-section1 {
    width: 100%;
    padding: var(--padding);
    overflow: hidden;
    background:
        url("../shape/owl-shape.png") center / cover no-repeat,
        linear-gradient(35deg, #8fbfdb 0%, #e6f6ff 100%);
    position: relative;
}
.faq-background{
  background-color: #FFFFFF80;
  border-radius: 12px;
  padding: 36px 20px;
}
.faq-section > .container > .row{
  row-gap: 50px;
}
.faq-category > h3{
  margin-bottom: 40px;
}
.gap-p{
  row-gap: 40px;
}
/*----------------------------------*/
/*--------------blog-details-css-start----------------------*/
.blog-introduction{
  padding: var(--padding);
}
.introduction-list{
  margin-bottom: 30px;
}
.introduction-list > p{
  margin-bottom: 20px;
}
.introduction-list > p:last-child{
  margin-bottom: 0px;
}
.introduction-list:last-child{
  margin-bottom: 0px;
}
/*--------------blog-details-css-end----------------------*/

/*-----------------------------popup------------------------*/
.appointment-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.appointment-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.appointment-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.appointment-modal.active .appointment-overlay {
    opacity: 1;
}
.appointment-popup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 45px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(35px) scale(0.95);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.appointment-modal.active .appointment-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.appointment-close {
    position: absolute;
    top: 70px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}
.appointment-close i {
    font-size: 17px;
    transition: transform 0.3s ease;
}
.appointment-close:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
.appointment-close:hover i {
    transform: rotate(90deg);
}
.appointment-heading {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 40px;
}
.appointment-heading span {
    display: block;
    margin-bottom: 8px;
}
.appointment-heading h2 {
    margin: 0 0 12px;
}
.appointment-heading p {
    max-width: 600px;
    margin: 0 auto;
}
.appointment-form {
    width: 100%;
}
.appointment-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.appointment-field {
    width: 100%;
}
.appointment-field label {
    display: block;
    margin-bottom: 8px;
}
.appointment-field label span {
    display: inline-block;
}
.appointment-field input,
.appointment-field select,
.appointment-field textarea {
    width: 100%;
    display: block;
    padding: 14px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.appointment-field input,
.appointment-field select {
    height: 52px;
}
.appointment-field textarea {
    min-height: 130px;
    resize: vertical;
}
.appointment-field input::placeholder,
.appointment-field textarea::placeholder {
    opacity: 0.7;
}
.appointment-field input:focus,
.appointment-field select:focus,
.appointment-field textarea:focus {
    border-color: #8fbfdb;
    box-shadow: 0 0 0 3px rgba(143, 191, 219, 0.12);
}
.appointment-field select {
    cursor: pointer;
}
.appointment-submit {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 26px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.20s ease;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-family: var(--secondary-font-family);
    font-weight: 500;
    text-transform: uppercase;
}
.submite-btn{
  text-align: center;
  margin-top: 20px;
}
.appointment-submit:hover{
  transition: all 0.20s ease;
  background-color: var(--secondary-color);
}
.appointment-submit svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.appointment-submit:hover svg {
    transform: translateX(5px);
}
body.appointment-open {
    overflow: hidden;
}
.appointment-field > label{
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--secondary-font-family);
  text-transform: uppercase;
}
#message{
  resize: none;
}

/*-------------contact-css-start-----------------*/

/*---------------get-in-form------------------------*/
.get-in-form {
    padding: var(--padding);
    background:
        url("../shape/contact-shape.png"),
        radial-gradient(111.85% 111.85% at 50% -30.01%, #FFFBF5 0%, #DBC195 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-item{
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-form-wrap{
  width: 100%;
  background-color: #FFFFFF80;
  border-radius: 32px;
 padding: 45px 25px;
}
.form-group > input, .form-group > select, .form-group > textarea{
  width: 100%;
  border: 0;
  outline: 0;
  margin-bottom: 20px;
  padding: 20px 10px;
  border-radius: 12px;
}
.form-group > textarea{
  resize: none;
}
.form-action > button{
  border: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 12PX;
  font-size: 18px;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  text-transform: uppercase;
}
.contact-icon > i{
  font-size: 25px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links > a > i{
  color: var(--black);
  font-size: 30px;
}
.contact-info > a{
  color: var(--black);
  text-decoration: none;
  font-size: 18px;
  font-family: var(--secondary-font-family);
  font-weight: 400;
}
.contact-info > h4{
  margin-bottom: 0px;
}
.contact-item{
  margin-bottom: 20px;
}
.social-links{
  margin-top: 50px;
}
.contact-header > p{
  margin-bottom: 40px;
}
/*---------------------------------------*/
html,
body{
    scrollbar-width:none;
    -ms-overflow-style:none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar{
    display:none;
}