/* INTER FONT FAMILY */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* PLAYFAIR FONT FAMILY */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

:root {
  --primary: #0a3161;
  --secondary: #b31942;
  --text: #898989;
  --body: #ffffff;
  --black: #000000;
  --white: #ffffff;
}

body {
  background: var(--body);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

main {
  background: #f2f2f2;
}

/* section {
  overflow-x: hidden;
} */

a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

select {
  cursor: pointer;
}

.form-control:focus {
  border-color: transparent;
  box-shadow: unset;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button {
  outline: none;
  background-color: transparent;
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.theme-btn.white a:nth-child(1) {
  background-color: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

.theme-btn a:nth-child(2):hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* .banner-btn:hover a:nth-child(2) {
  transform: translateX(-15.2rem);
  z-index: -1;
} */

.theme-btn.white a:nth-child(1):hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.theme-btn a svg {
  margin-left: 5px;
}

.theme-btn a svg path {
  transition: 0.4s all;
}

.theme-btn a:nth-child(2):hover svg path {
  stroke: var(--white);
}

/* PRIMARY */
.theme-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.theme-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 10px 40px;
  border-radius: 45px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.4s all;
}

.theme-btn a:nth-child(1) {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}

.theme-btn a:nth-child(1):hover {
  background-color: var(--white);
  color: var(--primary);
}

.theme-btn a:nth-child(2) {
  padding: 0;
  width: 60px;
  background-color: var(--white);
  border: 1px solid var(--primary);
}

/* SECONDARY */
.theme-btn.secondary a:nth-child(2):hover {
  background-color: transparent;
  border-color: var(--secondary);
}

.theme-btn.secondary a:nth-child(2) {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.theme-btn.secondary a:nth-child(2) svg path {
  stroke: var(--white);
}

.theme-btn.secondary a:nth-child(2):hover svg path {
  stroke: var(--secondary);
}

/* BLACK */

.theme-btn.black a:nth-child(1) {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.theme-btn.black a:nth-child(1):hover {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}

.theme-btn.black a:nth-child(2):hover {
  background-color: transparent;
  border-color: var(--black);
}

.theme-btn.black a:nth-child(2) {
  background-color: var(--black);
  border-color: var(--black);
}

.theme-btn.black a:nth-child(2) svg path {
  stroke: var(--white);
}

.style-p-alt {
  width: 85% !important;
  max-width: 1200px !important;
}

.theme-btn.black a:nth-child(2):hover svg path {
  stroke: var(--black) !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1800px !important;
  margin: auto;
  margin: auto;
  padding-left: 55px;
  padding-right: 55px;
}

/* LOADER START */
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.loader svg {
  opacity: 0.4;
}

.loader .loader-box {
  position: relative;
  height: 115px;
  width: 89px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.loader .loader-box .line {
  position: absolute;
  z-index: 999;
  background-color: var(--secondary);
}

.line-1 {
  left: 0;
  bottom: 0px;
  width: 0;
  height: 4.7px;
  opacity: 0.2;
}

.line-2 {
  right: 0;
  bottom: 0px;
  width: 4px;
  height: 0;
  opacity: 0.2;
}

.line-3 {
  right: 0;
  top: 0px;
  width: 89px;
  height: 4px;
  opacity: 0.2;
}

.line-4 {
  left: 0;
  top: 0px;
  width: 4px;
  height: 0;
  opacity: 0.2;
}

/* LOADER END */

/* HEADER START */
.header-main {
  position: relative;
  z-index: 9999;
}

.header-main.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
}

.header-main .navbar {
  width: 100%;
  padding: 35px 0;
  z-index: 1;
}

.brand_logo {
  padding-left: 140px;
}

.header-main .navbar .nav-toggler {
  background-color: #efefef;
  width: fit-content;
  height: fit-content;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s all;
  padding: 1rem 1.5rem;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.header-main .navbar .nav-toggler svg {
  pointer-events: none;
}

.header-main .navbar .nav-toggler svg {
  width: 1.8rem;
  height: auto;
}

.header-main .navbar .nav-toggler.active {
  background-color: var(--white);
}

.nav-toggler svg {
  display: none;
}

.nav-toggler .show {
  display: block;
}

.nav-toggler.active .close {
  display: block;
}

.nav-toggler.active .show {
  display: none;
}

.header-main .navbar .nav-toggler svg {
  transition: 0.4s all;
}

.header-main .navbar .nav-toggler:hover {
  background-color: var(--primary);
}

.header-main .navbar .nav-toggler:hover svg {
  stroke: var(--white);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100vh;
  background: #ececec;
  padding-top: 7rem;
  z-index: 9998;
  pointer-events: none;
  /* backdrop-filter: blur(75px); */
}

.top-bar.active,
body:has(.nav-toggler.active) .top-bar {
  pointer-events: auto;
  transform: translateY(0%);
}

.top-bar .nav-menu {
  width: 80%;
  margin: auto;
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 1%;
}

.top-bar .nav-menu li a {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(15px, 4.5vw, 100px) !important;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 127.71px */
  padding: 10px 0;
  padding-left: 30px;
  display: block;
  letter-spacing: -2.2px;
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}

.top-bar .nav-menu li a::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  height: 0;
  width: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary);
  transition: 0.3s all;
}

.top-bar .nav-menu li a:hover::after {
  width: 20px;
  height: 20px;
}

.top-bar .social-box {
  position: absolute;
  right: 3%;
  bottom: 5%;
  text-align: end;
  padding-block: 3rem;
}

.top-bar .social-box ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar .social-box a img {
  height: 1.5rem;
}

.top-bar .social-box .header-faq-btn {
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 116.1%;
  /* 27.864px */
  letter-spacing: -0.48px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-left: auto;
  width: fit-content;
}

/* HEADER END */

/* HERO SECTION START */
.hero-section {
  /* padding: 100px 0; */
  height: 100vh;
  /* display: flex; */
  /* align-items: center; */
  position: relative;
  padding-block: 2rem;
}

.custom-col-lg-6 {
  position: relative;
  width: 30% !important;
  height: 55rem;
  flex-grow: 1;
}

.custom-col-lg-6 .hero-img {
  position: absolute;
  top: 0 !important;
  /* left: 0; */
  /* width: 86% !important;
  height: 95% !important; */

  width: 44.63vw !important;
  height: 51.45vw !important;
}

.custom-col-lg-6 .hero-img img {
  object-fit: contain !important;
}

.custom-col-lg-6 .visa-box {
  position: absolute;
  bottom: 0;
  left: 2rem !important;
}


@media screen and (min-width: 1024px) {
  .col-lg-6:nth-of-type(1) {
    padding-top: 10rem;
  }

}

.hero-mbl {
  display: none;
}

.hero-section .hero-row {
  /* padding: 9% 0; */
  column-gap: 8rem;
  justify-content: space-between;
}

.hero-section .hero-row .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5.26vw;
  font-style: normal;
  font-weight: 400;
  line-height: 107.1%;
  color: var(--black);
}

.hero-section .hero-row .hero-title span {
  font-family: "Playfair Display", serif;
  display: inline-block;
  padding: 0 10px;
  padding-bottom: 10px;
  color: var(--white);
  white-space: nowrap;
  position: relative;
}

.hero-section .hero-row .hero-title .secondary::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
  border-radius: 16px;
  width: var(--width, 0);
  height: 100%;
  background-color: var(--secondary);
}

.hero-section .hero-row .hero-title .primary::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  z-index: -1;
  border-radius: 16px;
  width: var(--width, 0);
  height: 100%;
  background-color: var(--primary);
}

.hero-section .hero-row .hero-para {
  color: var(--text);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 400;
  line-height: 27.864px;
  max-width: 700px;
  margin: 25px 0;
}

.hero-section .hero-row .hero-img {
  position: absolute;
  top: 3%;
  right: 4.5%;
  max-width: 100%;
  width: 45%;
  height: calc(100vh - 55px);
  max-height: 900px;
}

.hero-section .hero-row .hero-img img {
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 1023px) and (max-width: 1280px) {
  .hero-section .hero-row .hero-img img {
    /* height: 80rem; */
    object-fit: contain;
  }
}

.hero-section .hero-row .hero-img .visa-box {
  position: absolute;
  left: 9%;
  bottom: 2%;
  max-width: 439px;
  width: 100%;
  height: 199px;
  border-radius: 30px;
  background: rgba(4, 44, 100, 0.66);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.hero-section .hero-row .hero-img .visa-box h6 {
  color: #ebebeb;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 114%;
}

.hero-section .hero-row .hero-img .visa-box .user_1k span {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  mask-image: linear-gradient(black 30%, transparent);
}

.hero-section .scroll_down {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
  max-width: 100%;
  width: 14%;
  cursor: pointer;
  animation: upAndDown 2s ease-in-out infinite;
}

@keyframes upAndDown {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20px);
    /* Move up by 20px */
  }

  100% {
    transform: translateX(-50%) translateY(0);
    /* Move back to the original position */
  }
}

.rings {
  display: inline;
  align-items: center;
  position: relative;
}

.rings img {
  position: absolute;
  top: 30px;
  width: 4vw;
  margin-left: 20px;
}

.rings img:nth-child(1) {
  left: 0;
}

.rings img:nth-child(2) {
  left: 0;
}

.rings img:nth-child(3) {
  left: 0;
}

.rings img:nth-child(4) {
  left: 0;
}

/* .rings img:nth-child(1) {
  left: 15px;
}

.rings img:nth-child(2) {
  left: 40px;
}

.rings img:nth-child(3) {
  left: 70px;
}

.rings img:nth-child(4) {
  left: 100px;
} */

/* HERO SECTION END */

/* CARD SECTION START */
.card-section {
  padding: 100px 0;
  background-image: url("../images/card-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cards-row {
  gap: 20px;
}

.cards-row .card-box {
  width: 28vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  gap: 8%;
  padding: 0;
}

.cards-row .card-full-img {
  height: 100%;
}

.cards-row .card-box.card-one {
  transform: translateX(-105%);
  z-index: 0;
  opacity: 0;
}

.cards-row .card-box.card-two {
  transform: translateX(105%);
  z-index: 0;
  opacity: 0;
}

.cards-row .card-box.card-three {
  transform: translateX(-105%);
  z-index: 0;
  opacity: 0;
}

.cards-row .card-box:not(.img-has) {
  padding: 3%;
}

.cards-row .card-box.bg-white {
  background-color: var(--white);
}

.cards-row .card-box .card-icon {
  max-width: 78px;
}

.cards-row .card-box h6 {
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

.cards-row .card-box p {
  color: var(--text);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

.cards-row .card-box .card-hover-content {
  background: linear-gradient(0deg, rgba(10, 49, 97, 1) 40%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8%;
  height: 100%;
  padding: 9%;
  opacity: 0;
  transform: translateY(20%);
  transition: 0.4s all;
}

.cards-row .card-box.img-has:hover .card-hover-content {
  transform: translateX(0%);
  opacity: 1;
}

.cards-row .card-box .card-hover-content h6 {
  color: var(--white);
}

.cards-row .card-box .card-hover-content p {
  color: var(--white);
}

/* CARD SECTION END */

/* WHY CHOOSE START */
.why-choose {
  padding: 100px 0;
}

.why-choose .why-choose-row {
  background-color: var(--primary);
  border-radius: 20px;
  padding: 50px;
}

.why-choose .why-choose-row .why-choose-title {
  padding: 0;
}

.why-choose .why-choose-row .why-choose-title h6 {
  color: var(--white);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.why-choose .why-choose-row .why-choose-title p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--text);
}

.why-choose .why-choose-row .why-choose-list {
  padding: 0;
  margin: 0;
  margin-top: 80px;
}

.why-choose .why-choose-row .why-choose-list li p {
  display: none;
  font-size: 14.4px;
  color: #a5a5a5;
}

.why-choose .why-choose-row .why-choose-list li {
  padding: 40px 0;
  border-top: 1px solid #a6a6a6;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose .why-choose-row .why-choose-list li img {
  width: 0%;
  transition: 0.4s all;
}

.why-choose .why-choose-row .why-choose-list li:hover img {
  width: 70px;
}

.why-choose .why-choose-row .why-choose-list div[data-set="true"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.why-choose .why-choose-row .why-choose-list li span {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.why-choose-hover {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: var(--secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  max-width: 500px;
  display: inline-flex;
  padding: 46px 38px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border-radius: 27px;
  opacity: 0;
  cursor: none;
  pointer-events: none;
}

/* WHY CHOOSE END */

/* STEPS START */
.steps-section {
  padding: 100px 0;
}

.steps-section .steps-row .step-subheading {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.steps-section .steps-row .step-heading {
  font-size: 140px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  font-family: "Playfair Display", serif;
  letter-spacing: -2.8px;
}

.steps-section .steps-row .step-para {
  color: #7a7a7a;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  max-width: 600px;
}

.steps-section .steps-row .step-big-heading {
  position: relative;
}

.steps-section .steps-row .step-big-heading .step {
  color: #e7e7e7;
  font-family: "Playfair Display", serif;
  font-size: 300px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 121.1%;
  /* 363.3px */
}

.steps-section .steps-row .step-big-heading .count {
  color: var(--primary);
  leading-trim: both;
  text-edge: cap;
  font-family: "Playfair Display", serif;
  font-size: 160px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 24%;
  transform: translate(0%, -50%);
}

.steps-section .step-card-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

.steps-section .step-card-wrapper .step-icon-box {
  position: relative;
}

/* .steps-section .step-card-wrapper .icon-icon {
  position: absolute;
  top: 60px;
  left: 45px;
} */

.steps-section .step-card-wrapper .step-icon {
  position: absolute;
  top: 60px;
  left: 45px;
  /*transform: rotateY(180deg);*/
}

.steps-section .step-card-wrapper .step-card {
  max-width: 70%;
  margin-left: auto;
  position: relative;
}

.steps-section .step-card-wrapper .step-card .step-title {
  color: var(--primary);
  leading-trim: both;
  text-edge: cap;
  font-size: 42px;
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

.steps-section .step-card-wrapper .step-card p {
  color: #7a7a7a;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* EVEN CSS START */

.steps-section .steps-row.even {
  flex-direction: row-reverse;
}

.steps-section .steps-row.even .step-big-heading .count {
  left: 24%;
}

.steps-section .steps-row.even .step-card-wrapper {
  flex-direction: row-reverse;
}

.steps-section .steps-row.even .step-card .step-title {
  text-align: end;
  margin-right: 40px;
}

.steps-section .steps-row.even .icon-carry {
  transform: scaleX(-1) translateX(35px);
}

.steps-section .steps-row.even .step-card-wrapper .step-icon {
  top: 60px;
  left: unset;
  right: 70px;
}

/* EVEN CSS END */
/* STEPS END */

/* RESIDENCY START */
.residency-section {
  padding-top: 0;
  padding: 100px 0;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.residency-section .residency-title h6 {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 130px;
  font-style: normal;
  font-weight: 500;
  line-height: 85%;
  text-align: center;
  max-width: 80%;
  margin: auto;
}

.residency-section .residency-title h6 span.secondary {
  color: var(--secondary);
  font-family: "Playfair Display", serif;
}

.residency-section .residency-title h6 span.primary {
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.residency-section .residency-img-1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12.5%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.residency-section .residency-img-2 {
  position: absolute;
  top: 80%;
  right: 0;
  width: 8.5%;
  height: 75%;
  object-fit: cover;
  border-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* RESIDENCY END */

/* PROJECTS START */
.projects-section {
  padding: 100px 0;
  padding-bottom: 100px;
}

.project-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 150px;
  height: 150px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  pointer-events: none;
  text-transform: capitalize;
}

.projects-section .projects-heading h6 {
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  font-family: "Playfair Display", serif;
  position: relative;
}

.projects-section .projects-heading h6 span {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  position: absolute;
}

.projects-section .project-track {
  display: inline-flex;
  /* align-items: center; */
  gap: 1.5%;

  padding: 100px 0;
}

.projects-section .project-track .project-box {
  width: 39.583vw;
  overflow: hidden;
  /* height: 100%; */
  /* height: 40rem; */
}

.projects-section .project-track .project-box .project-img {
  border-radius: 30px;
  overflow: hidden;
}

.projects-section .project-track .project-box .project-img {
  color: #7a7a7a;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.projects-section .project-track .project-box .project-img img {
  transition: 0.8s all;
  width: 100%;
  will-change: transform;
}

.projects-section .project-box .project-img {
  border-radius: 30px;
  overflow: hidden;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;

  background: white;
}

.projects-section .project-box:hover img {
  scale: 1.2;
  object-fit: cover;
}

.projects-section .project-track .project-box .project-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.projects-section .project-track .project-box .project-detail h6 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.projects-section .project-track .project-box .project-detail span {
  color: #7a7a7a;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* PROJECTS END */

/* SUCCESS STORY START */
.success-story-section {
  background-color: #f0f0f0;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success-story-section .success-story-heading h6 {
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 92.88px */
  letter-spacing: -1.6px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.success-story-section .success-story {
  padding-top: 50px;
  rotate: -3.883deg;
}

.success-story-section .success-story .success-track {
  display: inline-flex;
  gap: 0.5%;
}

.success-story-section .success-story .success-track.track-1 {
  transform: translateX(0);
}

.success-story-section .success-story .success-track.track-2 {
  transform: translateX(0);
}

.success-story-section .success-card {
  background-color: var(--white);
  width: 27.604vw;
  padding: 45px;
  padding-bottom: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: 0.4s all;
}

.success-story-section .success-story .success-track.track-1 .success-card:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.success-story-section .story-swiper {
  overflow: visible;
}

.success-story-section .success-story .success-track.track-1 .success-card:hover p {
  color: var(--white);
}

.success-story-section .success-story .success-track.track-1 .success-card:hover h6 {
  color: var(--white);
}

.success-story-section .success-story .success-track.track-2 .success-card:hover {
  background-color: var(--primary);
  color: var(--white);
}

.success-story-section .success-story .success-track.track-2 .success-card:hover p {
  color: var(--white);
}

.success-story-section .success-story .success-track.track-2 .success-card:hover h6 {
  color: var(--white);
}

.success-story-section .success-card .success-img {
  width: 98px;
  height: 98px;
  min-width: 98px;
  min-height: 98px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.success-story-section .success-card .success-img img {
  width: 100%;
}

.success-story-section .success-card .success-detail p {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  padding-top: 45px;
}

.success-story-section .success-card .success-detail h6 {
  color: #838383;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 86px;
}

.success-story-section .swiper-custom-control {
  margin-top: 100px;
  height: 100px;
}

.swiper-custom-control {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 1rem;
}

.swiper-pagination-bullet {
  background: #cacaca;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 7.449px;
  background: var(--primary);
}

.swiper-custom-control .swiper-custom-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonioswiper {
  padding: 1%;
}
.success-story-heading {
  margin-bottom: 10%;
}
.testimonioswiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonioswiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonioswiper .swiper-slide {
  width: 70%;
}

.testimonioswiper .swiper-slide:nth-child(2n) {
  width: 65%;
}

.testimonioswiper .swiper-slide:nth-child(3n) {
  width: 65%;
}
.success-story-section .container {
  padding-left: 2%;
  padding-right: 2%;
  width: 100%;
}
.swiper-pagination {
  width: fit-content !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}
/* SUCCESS STORY END */

/* FAQS START */
.faqs-section {
  padding: 100px 0;
}

.faqs-section .faq-sidebar h6 {
  color: var(--primary);
  font-size: 130px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2.6px;
  font-family: "Playfair Display", serif;
}

.faqs-section .faq-sidebar ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.faqs-section .faq-sidebar ul li a {
  display: flex;
  padding: 10px 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.4px;
  color: #7d8ca3;
}

.faqs-section .faq-sidebar ul li a.active {
  color: var(--primary);
  position: relative;
  padding-left: 15px;
}

.faqs-section .faq-sidebar ul li a.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 1px;
  background-color: var(--primary);
}

.faqs-section .faq-list-container {
  display: none;
  height: 100%;
}

.faqs-section .faq-list-container .faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 0;
}

.faq-list-box {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 30px;
  justify-content: space-between;
  height: 100%;
}

.faq-list-box .view_more_btn {
  color: var(--primary);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.1%;
  letter-spacing: -0.44px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.faqs-section .faq-list-container.active {
  display: block;
}

.faqs-section .faq-list-container .faq-box {
  border-radius: 37.5px;
  background: var(--white);
  box-shadow: 0px 8px 15px 0px rgba(163, 211, 229, 0.25);
  display: flex;
  width: 924px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.5px;
  cursor: pointer;
}

.faqs-section .faq-list-container .faq-box .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #4e5678;
}

.faqs-section .faq-list-container .faq-box .faq-header h6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #4e5678;

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 36px */
  letter-spacing: 0.48px;
}

.faqs-section .faq-list-container .faq-box .faq-body {
  display: none;
}

.faqs-section .faq-list-container .faq-box .faq-body p {
  color: #7d8ca3;
}

/* FAQS END */

/* MEET START */
.meet-section {
  /* padding-top: 100px; */
  /* height: 100vh; */
  /* margin-bottom: 200px; */
  position: relative;
}

.meet-section .swiper-custom-control {
  /* margin-top: 100px; */
}

.meet-section .primary-title {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -1.6px;
  text-align: center;
  margin-bottom: 50px;
}

.meet-section .primary-title span {
  color: var(--secondary);
  font-family: "Playfair Display", serif;
}

.meet-card {
  max-width: 20%;
  padding: 0;
  position: relative;
  transition: 1s all;
  transform-style: preserve-3d;
  border-radius: 34px;
  background-color: var(--white);
  box-shadow: 0px 1.607px 21.215px 0px rgba(0, 0, 0, 0.15);
}

.meet-card:hover {
  transform: rotateY(180deg);
}

.meet-row-empty {
  display: flex;
  padding-bottom: 7%;
}

.meet-row-empty .meet-card-empty {
  min-height: 600px;
  flex: auto;
  /* background-color: red; */
}

.meet-card .front-card {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  min-height: 600px;
  backface-visibility: hidden;
  border-radius: 34px;
  background-color: var(--white);
  box-shadow: 0px 1.607px 21.215px 0px rgba(0, 0, 0, 0.15);
}

.meet-card .back-card {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 30px;
  padding: 50px 20px;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  border-radius: 34px;
  background-color: var(--white);
  box-shadow: 0px 1.607px 21.215px 0px rgba(0, 0, 0, 0.15);
}

.meet-card .back-card p {
  color: #7a7a7a;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: -0.48px;
  margin-bottom: 50%;
}

.meet-card .meet-img img {
  width: 100%;
}

.meet-card .meet-detail {
  padding: 60px 20px;
  padding-top: 20px;
}

.meet-card .meet-detail h6 {
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -0.52px;
}

.meet-card .meet-detail p {
  color: #7a7a7a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -0.32px;
  margin-top: 10px;
}

.meet-card .meet-detail p span {
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -0.32px;
  padding-right: 10px;
}

/* .meet-section .meet-btn {
  position: absolute;
  left: 50%;
  bottom: -15%;
  transform: translateX(-50%);
} */

/* MEET END */

/* PROJECTS PAGE START */
.projects-pg {
  padding: 100px 0;
  padding-top: 200px;
  padding-bottom: 100px;
}

.projects-pg .projects-heading h6 {
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  font-family: "Playfair Display", serif;
  position: relative;
}

.projects-pg .projects-heading h6 span {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  position: absolute;
}

.projects-pg .project-box {
  width: 100%;
  overflow: hidden;
}

.projects-pg .project-bg-row {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
}

.projects-pg .project-box .project-img {
  border-radius: 30px;
  overflow: hidden;
}

.projects-pg .project-box .project-img img {
  width: 100%;
}

.projects-pg .project-box .project-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.projects-pg .project-box .project-detail h6 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.projects-pg .project-box .project-detail span {
  color: #7a7a7a;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* PROJECTS PAGE END */

/* PROJECT BANNER START */
.project-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.project-banner .project-banner-row {
  padding: 180px 0;
  padding-bottom: 50px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.project-banner .project-banner-row p {
  color: var(--white);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 54.6px */
  letter-spacing: -0.84px;
}

.project-banner .project-banner-row a {
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--white);
}

.project-banner .project-banner-row .project-banner-track {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 190px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  gap: 30px;
  /* 228px */
}

.project-banner .project-banner-row .project-banner-track span {
  display: block;
  font-family: "Playfair Display", serif;
  flex-shrink: 0;
}

/* PROJECT BANNER END */

/* PROJECT INFO START */

.project-info {
  padding: 100px 0;
}

.project-info .project-info-row {
  padding: 10px 0;
}

.project-info .project-info-row span {
  color: #a7a7a7;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: block;
  /* 28.8px */
}

.project-info .project-info-row h6 {
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 38.4px */
}

.project-info .project-info-row p {
  color: #7a7a7a;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 36.4px */
  letter-spacing: -0.56px;
}

/* PROJECT INFO END */

/* PROJECT VIDOE START */
.video-section {
  padding: 100px 0;
  position: relative;
}

.video-section video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

/* PROJECT VIDOE END */

/* PROJECT OVERVIEW START */
.overview-section span {
  color: #7a7a7a;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 36.4px */
  letter-spacing: -0.56px;
}

.overview-section h6 {
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 91px */
  letter-spacing: -1.4px;
}

.overview-section p:first-child {
  margin-bottom: 15px;
}

.overview-section p {
  color: #7a7a7a;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 36.4px */
  letter-spacing: -0.56px;
}

.overview-section .image-placholder {
  margin: 100px 0;
  border-radius: 30px;
  background: #7d8ca3;
}

/* PROJECT OVERVIEW END */

/* PROJECTS OTHER START */
.projects-other-pro {
  padding: 100px 0;
  padding-bottom: 100px;
}

.projects-other-pro .projects-other-pro-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.projects-other-pro .projects-other-pro-heading h6 {
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  font-family: "Playfair Display", serif;
  position: relative;
}

.projects-other-pro .projects-other-pro-heading h6 span {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  position: absolute;
}

.projects-other-pro {
  padding: 100px 0;
}

.projects-other-pro .project-box {
  width: 100%;
  overflow: hidden;
}

.projects-other-pro .project-other-pro-row {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
}

.projects-other-pro .project-box .project-img {
  border-radius: 30px;
  overflow: hidden;
}

.projects-other-pro .project-box:hover img {
  scale: 1.4;
}

.projects-other-pro .project-box .project-img img {
  width: 100%;
  transition: 0.8s all;
}

.projects-other-pro .project-box .project-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.projects-other-pro .project-box .project-detail h6 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.projects-other-pro .project-box .project-detail span {
  color: #7a7a7a;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* PROJECTS OTHER END */

/* FAQ PAGE START */
.faq-pg-heading {
  text-align: center;
}

.faq-pg {
  padding: 200px 0;
}

.faq-pg-heading h1 {
  font-size: 160px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.faq-pg-heading h3 {
  color: #7a7a7a;
  margin: 15px 0;
  font-size: 26px;
  font-family: "Inter", sans-serif;
}

.faqs-section .faq-sidebar h6 {
  color: var(--black);
  font-size: 50px;
  font-family: "Playfair Display", serif;
}

.faqs-section.faq-pg .faq-toggle-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.faqs-section.faq-pg .faq-toggle-box button {
  padding: 35px 45px;
  flex-shrink: 0;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid transparent;
  box-shadow: 0px 2px 27.4px 6px rgba(160, 164, 172, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 36px */
}

.faqs-section.faq-pg .read-faq {
  display: none;
}

.faqs-section.faq-pg .watch-faq {
  display: none;
}

.faqs-section.faq-pg .faq-toggle-btn.active {
  border-color: var(--primary);
}

.faqs-section.faq-pg .video-box {
  border-radius: 29.029px;
  background: var(--white);
  overflow: hidden;
  padding: 40px;
}

.faqs-section.faq-pg .video-box video {
  width: 100%;
  border-radius: 23.807px;
}

.faqs-section.faq-pg .faq-sidebar {
  max-width: 400px;
  height: 40%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.faqs-section.faq-pg .video-box h6 {
  color: #595959;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 30px 0;
  margin-bottom: 0;
  /* 48px */
}

/* FAQ PAGE END */

/* CONTACT PAGE START */
.contact-pg {
  padding-top: 200px;
  background-image: url("../images/contact-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-pg .contact-title p {
  max-width: 629px;
  text-align: center;
  margin: 50px auto;
  color: #7a7a7a;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: -0.36px;
}

.contact-pg .contact-title h6 {
  color: var(--primary);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -2px;
}

.contact-pg .contact-title h6 span {
  color: var(--secondary);
  font-family: "Playfair Display", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -2px;
}

.contact-pg .contact-form {
  max-width: 500px;
  margin: auto;
}

.contact-pg .contact-form .row {
  gap: 20px 0;
}

.contact-pg .contact-form input {
  width: 100%;
  border-radius: 162.264px;
  border: 1px solid #3d536d;
  background: #fafafa;
  padding: 15px 30px;
}

.contact-pg .contact-form input:focus {
  outline: none;
}

.contact-pg .contact-form input::placeholder {
  color: rgba(62, 99, 151, 0.6);
}

.contact-pg .contact-form textarea {
  width: 100%;
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid #3d536d;
  background: #fafafa;
}

.contact-pg .contact-form textarea::placeholder {
  color: rgba(62, 99, 151, 0.6);
}

.contact-pg .contact-form textarea:focus {
  outline: none;
}

.contact-pg .contact-form .contact-btn {
  margin-left: auto;
  border-radius: 135.8px;
  background: var(--primary);
  max-width: 201px;
  padding: 4px 4px 4px 30px;
  color: var(--white);
  font-size: 17.575px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-pg .contact-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: -50px;
}

.contact-pg .contact-social .contact-sc-box h6 {
  color: #787878;
  font-family: "Playfair Display", serif;
  font-size: 24.565px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-pg .contact-social .contact-sc-box .contact-sc-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.contact-pg .contact-social .contact-sc-box .contact-sc-list a {
  display: block;
}

.contact-pg .contact-social .contact-sc-box .contact-sc-list img {
  max-height: 20px;
}

.contact-pg .contact-social .location-box h6 {
  color: #787878;
  font-family: "Playfair Display", serif;
  font-size: 24.565px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-pg .contact-social .location-box .location-box-ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-pg .contact-social .location-box .location-box-ul a {
  color: var(--primary);
  font-size: 21.587px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-pg .contact-social .location-box a {
  display: block;
}

/* CONTACT PAGE END */

/* ABOUT PAGE START */
.about-pg {
  padding-top: 200px;
}

.about-pg .about-title h1 {
  color: var(--black);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1.6px;
}

/* .about-pg .about-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 101px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.1%;
  color: var(--black);
} */

.about-pg .about-title h1 span {
  font-family: "Playfair Display", serif;
  display: inline-block;
  width: 100%;
  max-width: fit-content;
  padding: 0 10px;
  padding-bottom: 10px;
  color: var(--white);
  border-radius: 16px;
  white-space: nowrap;
}

.about-pg .about-title h1 .secondary {
  background-color: var(--secondary);
}

.about-pg .about-title h1 .primary {
  background-color: var(--primary);
  margin-top: 10px;
}

.about-pg .about-title h6 {
  margin-top: 40px;
  text-align: center;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.1%;
  /* 27.846px */
  letter-spacing: 2.08px;
  text-transform: uppercase;
}

.two-about-img {
  padding: 100px 0;
}

.guide-section .container .big-banner-row {
  border-radius: 30px;
  background: var(--primary);
  padding: 80px 50px;
  height: 90vh;
  display: flex;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.guide-section .container .big-banner-row h5 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 104.49px */
  letter-spacing: -1.8px;
}

.guide-section .container .big-banner-row .main-para {
  color: #d1d1d1;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 32.508px */
  letter-spacing: -0.56px;
}

.guide-section .container .big-banner-row h6 {
  color: #a3d3e5;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 48.762px */
  letter-spacing: -0.84px;
}

.guide-section .container .big-banner-row .sub-para {
  color: var(--white);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 30.186px */
  letter-spacing: -0.52px;
}

.guide-section .container .big-banner-row .big-banner-col {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.guide-section .container .big-banner-row img {
  position: absolute;
}

.guide-section .container .big-banner-row .shadow-box {
  border-radius: 719px;
  background: rgba(163, 211, 229, 0.25);
  filter: blur(250px);
  width: 701px;
  height: 719px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.guide-section .container .big-banner-row .abv-1 {
  left: 12%;
  bottom: -76%;
  width: 54vw;
  z-index: 0;
}

.guide-section .container .big-banner-row .abv-2 {
  width: 35vw;
  top: 0;
  right: 24%;
}

.guide-section .container .big-banner-row .abv-3 {
  width: 20vw;
  bottom: 0;
  right: 0;
}

.guide-section .container .big-banner-row .abv-4 {
  width: 25vw;
  top: 0;
  right: 17%;
  z-index: 1;
}

.guide-section .container .big-banner-row .abv-5 {
  width: 17vw;
  right: -1%;
  bottom: 11%;
  z-index: 1;
}

.guide-section .container .big-banner-row .abv-img {
  right: 5%;
  bottom: 0;
  width: 80vh;
  z-index: 1;
}

/* ABOUT PAGE END */

/* CATER SLIDER START */
.cater-slider-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cater-slider-section .cater-shadow {
  position: absolute;
  top: 50%;
  left: -5%;
  z-index: -1;
  max-width: 500px;
  transform: translateY(-50%);
}

.cater-slider-section h6 {
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 62px;
  font-style: normal;
  font-weight: 500;
  line-height: 116.1%;
  /* 71.982px */
  letter-spacing: -1.24px;
  margin-bottom: 3rem;
}

.cater-slider-section .cater-slider {
  overflow: visible;
}

.cater-slider-section .cater-slider .swiper-slide {
  cursor: pointer;
  height: auto;
}

.cater-slider-section .cater-slider img {
  height: 30px;
}

.cater-slider-section .cater-slide {
  border-radius: 20px;
  background: var(--secondary);
  flex-shrink: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.cater-slider-section .cater-slider p {
  color: var(--white);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 116.1%;
  /* 30.186px */
  letter-spacing: -0.52px;
}

/* CATER SLIDER END */

/* WHY CHOOSE START */
.why-choose-pg {
  margin-top: 100px;
  padding: 100px 0;
  position: relative;
}

.why-choose-pg .why-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 22vw;
}

.why-choose-pg .why-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 23vw;
}

.why-choose-pg .why-choose-title {
  max-width: 800px;
  margin: auto;
}

.why-choose-pg .why-choose-title h6 {
  color: var(--black);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 116.1px */
  letter-spacing: -2px;
}

.why-choose-pg .why-choose-title .first {
  color: var(--primary);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 37.152px */
  letter-spacing: -0.64px;
  margin-top: 50px;
}

.why-choose-pg .why-choose-title p {
  max-width: 428px;
  margin: auto;
  margin-bottom: 30px;
  color: #7a7a7a;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 37.152px */
  letter-spacing: -0.64px;
}

/* WHY CHOOSE END */

/* FOOTER START */

.footer {
  padding-bottom: 50px;
}

.footer .footer-row {
  border-radius: 30px;
  background: linear-gradient(163deg, #042c64 0.92%, #365885 129.85%);
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-top: 100px;
}

.footer .footer-row h6 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -1.6px;
}

.footer .footer-row p {
  max-width: 600px;
  color: var(--text);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  letter-spacing: -0.4px;
  margin: 30px 0;
}

.footer .footer-row .newsletter {
  border-radius: 162.264px;
  border: 1px solid #3e6397;
  max-width: 600px;
  display: flex;
  align-items: center;
  padding: 5px;
}

.footer .footer-row .newsletter input {
  background-color: transparent;
  border: none;
  width: 100%;
  padding-left: 20px;
  color: var(--white);
}

.footer .footer-row .newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.37);
}

.footer .footer-row .newsletter button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  max-width: 200px;
  width: 100%;
  padding-left: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  border-radius: 135.8px;
  background: #3e6397;
  color: var(--white);
  font-size: 17.575px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-terms {
  height: fit-content;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-terms section {
  width: 95%;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-terms section h2 {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 4vw, 4.45rem);
  font-style: normal;
  font-weight: 400;
  text-align: center;
  width: 95%;
  line-height: 122%; /* 46.36px */
  text-transform: capitalize;
}

.section-terms section p {
  color: var(--primary);
  font-family: Inter;
  font-size: clamp(15px, 1.2vw, 1.2rem);
  font-style: normal;
  font-weight: 400;
  width: 95%;
  line-height: 121.797%; /* 15.168px */
  list-style: none;
  text-transform: capitalize;
}

.section-terms section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-terms section li {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(13px, 1.15vw, 1.15rem);
  font-style: normal;
  font-weight: 400;
  line-height: 111.797%; /* 15.168px */
  list-style: none;
  list-style: circle;
  text-transform: capitalize;
}

.footer .footer-row .footer-links {
  display: flex;
  align-items: center;
  max-width: fit-content;
  width: 100%;
  padding: 0;
  margin: 80px 20px 0px 20px;
  justify-content: space-between;
}

.footer .footer-row .footer-links li a {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.4;
  padding: 0 30px;
  position: relative;
}

/* .footer .footer-row .footer-links li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -35%;
  height: 1px;
  width: 35%;
  transform: translateX(-35%);
  max-width: 45px;
  background-color: var(--white);
}

.footer .footer-row .footer-links li:last-child a::after {
  display: none;
} */

.footer .footer-row .footer-links li span {
  width: 25px;
  height: 1px;
  background-color: white;
  display: block;
}

.footer .footer-row .footer-links li a.active {
  color: var(--white);
  opacity: 1;
}

.footer .footer-form {
  max-width: 500px;
  margin: auto;
}

.footer .footer-form input {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #b5c3d8;
  background-color: transparent;
  padding: 15px 30px;
  margin-bottom: 20px;
  color: var(--white);
}
.footer .footer-form textarea {
  border: 1px solid #b5c3d8;
}
.footer .footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer .footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer .footer-form input:focus {
  outline: none;
}

.footer .footer-form textarea:focus {
  outline: none;
}

.footer .footer-form textarea {
  color: var(--white);
  width: 100%;
  border-radius: 30px;
  padding: 15px 30px;
  background-color: transparent;
  margin-bottom: 20px;
  resize: none;
}

.footer .footer-form button {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  border-radius: 135.8px;
  background: #3e6397;
  color: var(--white);
  font-size: 17.575px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 30px;
  width: fit-content;
  margin: auto;
}

.copyright a {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px;
  /* 281.25% */
}

.copyright a:first-child {
  padding-right: 20px;
  position: relative;
}

.copyright a:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 70%;
  transform: translateY(-50%);
  width: 1px;
  background-color: var(--white);
}

/* FOOTER END */

.meet-sigle-sec {
  padding-top: 180px;
  /* height: calc(100vh + 180px); */
}
.ms-wraper {
  background: #f3f6fa;
  border-radius: 30px;
}

.msrow {
  position: relative;
}

.ms-column:first-child {
  width: 100%;
}

.ms-content h1 {
  max-width: 700px;
  font-size: 75px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.ms-img {
  height: 100%;
}

.ms-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.ms-content p {
  font-size: 24px;
  color: #7a7a7a;
  font-weight: 600;
  margin: 20px 0 30px 0;
}

.ms-content p .jd {
  color: #0a3161;
}

.ms-text p {
  color: #7a7a7a;
  margin: 20px 0;
  font-weight: 400;
  font-size: 22px;
}

.msrow .col-lg-8.col-md-7 {
  padding-left: 100px;
}

.back-btn {
  position: absolute;
  right: 3%;
  top: 4%;
  width: auto;
}

.back-btn a {
  background: white;
  border-radius: 50px;
  font-size: 24px;
  color: #0a3161;
  padding: 10px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}

.ms-content {
  padding: 20px 50px 20px 0px;
}

.choose-roots {
  display: none;
}

.ebprogram-section {
  padding-top: 200px;
  padding-bottom: 100px;
}

.eb-prtop {
  max-width: 1040px;
  text-align: center;
  margin: 0 auto;
}

.eb-prtop h1 {
  font-family: "Playfair Display", serif;
  font-size: 160px;
  font-weight: 400;
  color: var(--black);
}

.eb-prtop p {
  font-size: 22px;
  color: #7a7a7a;
  margin-top: 45px;
  margin-bottom: 70px;
}

.eb-immigration-section {
  padding: 200px 0px;
  background: #0a3161;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebini-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 90px;
  font-weight: 400;
  color: var(--white);
  line-height: 116.1%;
}

.ebini-title p {
  color: #c8c8c8;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  margin-top: 40px;
}

.ebini-title {
  max-width: 70%;
  text-align: center;
  margin: auto;
}

.eb-immigration-section .immigration-img-1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16%;
  height: 67%;
  object-fit: cover;
  border-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transform: translateY(-50%);
}

.eb-immigration-section .immigration-img-2 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16%;
  height: 67%;
  object-fit: cover;
  border-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateY(-50%);
}

.eb-fund-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--black);
  line-height: 116.1%;
}

.eb-fund-images img {
  border-radius: 30px;
}

.eb-fund-title p {
  /* color: #7A7A7A; */
  font-family: "Inter", sans-serif;
  font-size: 50px;
  margin-top: 50px;
}
.eb-fund-title p span {
  background: linear-gradient(#7a7a7a, #7a7a7a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ebfund-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.eb-fund-section {
  padding: 70px 0px 70px 0;
  margin-bottom: 400px;
}

.fund-2 {
  margin-top: 25px;
}

/*  */
.our-comm-section {
  /* padding: 200px 0px; */
  background: #0a3161;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.our-comm-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 90px;
  font-weight: 400;
  color: var(--white);
  line-height: 116.1%;
}

.our-comm-title p {
  color: #c8c8c8;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 50px;
}

.our-comm-title {
  max-width: 60%;
  text-align: center;
  margin: auto;
}

.our-comm-section .our-com-1 {
  position: absolute;
  top: 40%;
  left: 0;
  height: 20%;
  object-fit: cover;
  border-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transform: translateY(-50%);
}

.our-comm-section .our-com-2 {
  position: absolute;
  top: 74%;
  left: 5%;
  height: 20%;
  object-fit: cover;
  border-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transform: translateY(-50%);
}

.our-comm-section .our-com-3 {
  position: absolute;
  top: 40%;
  right: 5%;
  height: 20%;
  object-fit: cover;
  border-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateY(-50%);
}

.our-comm-section .our-com-4 {
  position: absolute;
  top: 74%;
  right: 0;
  height: 20%;
  object-fit: cover;
  border-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateY(-50%);
}

.container-30 {
  padding: 0 30px;
}

.eb-box-wraper {
  display: flex;
  gap: 15px;
}

.eb-box-text h3 {
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 26px;
  line-height: 130%;
  letter-spacing: -2%;
  font-weight: 600;
}

.eb-box-text p {
  color: #7a7a7a;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -2%;
}

.eb-benifits-sec {
  height: 100vh;
  display: flex;
  align-items: center;
}

.ttle-boxes {
  /* padding: 300px 0; */
  position: relative;
}

.eb-benifits-title {
  margin-bottom: 50px;
}

.eb-benifits-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--black);
  line-height: 116.1%;
}

.ttle-boxes::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  z-index: -1;
  transform: translateY(-50%);
  width: 1029px;
  height: 1719px;
  background: url("../images/benifit-left.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.ttle-boxes::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  z-index: -1;
  transform: translateY(-50%);
  width: 1029px;
  height: 1719px;
  background: url("../images/benifit-right.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.eb-benifits-wrapper {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.eb-benits-column {
  background: white;
  padding: 70px 20px;
  display: flex;
  border-radius: 28px;
}

.flag-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.flag-section .flag-title {
  max-width: 1200px;
  margin: 0 auto;
}

.flag-section .flag-title h6 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 107.1%;
  color: var(--black);
}

.flag-section .flag-title span {
  font-family: "Playfair Display", serif;
  display: inline-block;
  padding: 0 10px;
  padding-bottom: 10px;
  color: var(--white);
  white-space: nowrap;
  position: relative;
}

.flag-section .flag-title .primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
}

.flag-section .flag-title p {
  margin-top: 70px;
  color: #7a7a7a;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.flag-section .flag-video {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: -2;
  border-radius: 20px;
  position: relative;
}

.flag-section .flag-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #d9d9d9 0%, rgba(115, 115, 115, 0) 100%);
  z-index: 1;
}

.flag-section .flag-video video {
  height: 100%;
  width: 100%;
}

/* .flag-section .flag-img{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 1300px;
  width: 100%;
} */
.invest-section {
  height: 100vh;
  background-image: url("../images/invest.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.invest-section .invest-title {
  position: absolute;
  left: 6%;
  bottom: 10%;
}

.invest-section .invest-title h6 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.1%;
  /* 81.27px */
  letter-spacing: -1.4px;
}

.invest-section .invest-title span {
  font-family: "Playfair Display", serif;
  display: inline-block;
  padding: 0 10px;
  padding-bottom: 10px;
  color: var(--white);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.invest-section .invest-title .secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
}

.invest-section .invest-btn a {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--black);
}

.invest-section .invest-btn a span {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 42px;
  color: var(--black);
  flex-shrink: 0;
  padding: 0;
  height: 60px;
  padding: 10px 33px;
  gap: 10px;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.1%;
  /* 23.22px */
  letter-spacing: -0.4px;
}

.invest-section .invest-btn a span:nth-child(2) {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  padding: 0;
}

.team-pg p {
  color: #7a7a7a;
  font-size: 20px;
  max-width: 887px;
  margin: 0 auto;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.team-pg {
  padding: 300px 0px 50px 0px;
  height: 100%;
  margin-bottom: 0;
}
.team-pg .meet-row .meet-card:hover {
  transform: rotateY(0deg);
}
.team-pg .meet-row .meet-card .front-card {
  position: relative;
}
.team-pg .meet-row {
  margin-top: 70px;
}
.team-pg .meet-row .meet-card .meet-detail p {
  text-align: left;
}

.error {
  display: block !important;
  color: red;
  font-size: 14px;
}

.border {
  border: 1px solid red !important;
}

.dp-none {
  display: none;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.swiper-slide .project-box .project-img img {
  width: 100%;
}

.swiper-slide .project-box .project-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.swiper-slide .project-box .project-detail h6 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.swiper-slide .project-box .project-detail span {
  color: #7a7a7a;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* ===========================================
   BLOG STYLES
   =========================================== */

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.blog-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.blog-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Content Section */
.blog-content {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Blog Posts Container */
.blog-posts.row {
  align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
}

.blog-posts > .col-lg-6,
.blog-posts > .col-md-6 {
  margin-bottom: 30px;
  display: flex;
  align-items: stretch;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
  padding-top: 0;
}

/* Ensure first two cards align at top and have same height */
.blog-posts.row > .col-lg-6:nth-child(1),
.blog-posts.row > .col-lg-6:nth-child(2),
.blog-posts.row > .col-md-6:nth-child(1),
.blog-posts.row > .col-md-6:nth-child(2) {
  align-self: stretch;
}

/* Blog Post Card */
.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 0;
  height: 100%;
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-card .post-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  flex-shrink: 0;
}

.blog-post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
  transform: scale(1.05);
}

.blog-post-card .post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-post-card .post-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-post-card .post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.blog-post-card .post-meta .post-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-post-card .post-meta .post-author {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-post-card .post-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--primary);
  min-height: 3.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-card .post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
  color: var(--secondary);
}

.blog-post-card .post-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  min-height: 4.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-card .read-more {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 10px;
}

.blog-post-card .read-more:hover {
  color: var(--primary);
  gap: 8px;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

/* Search Form */
.search-form {
  position: relative;
}

.search-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 12px 50px 12px 20px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.search-form .form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: var(--primary);
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: var(--secondary);
}

.category-list .count {
  background: #f8f9fa;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* Recent Posts */
.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h5 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content h5 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
  color: var(--secondary);
}

.recent-post-content .post-date {
  font-size: 0.8rem;
  color: #666;
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background: var(--secondary);
  color: white;
}

/* Blog Post Page Styles */
.blog-post-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.breadcrumb-nav {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: white;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.6);
}

.blog-post-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-post-content {
  padding: 60px 0;
  background: white;
}

.blog-post-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.post-featured-image {
  height: 400px;
  overflow: hidden;
}

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

.post-content {
  padding: 40px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-family: "Playfair Display", serif;
}

.post-content h2 {
  font-size: 2rem;
}

.post-content h3 {
  font-size: 1.5rem;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.post-content blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #666;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

/* Post Tags */
.post-tags {
  padding: 0 40px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.post-tags h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.post-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags .tag-list a {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}

.post-tags .tag-list a:hover {
  background: var(--secondary);
}

/* Social Share */
.social-share {
  padding: 30px 40px;
  border-bottom: 1px solid #f0f0f0;
}

.social-share h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.email {
  background: #666;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Author Bio */
.author-bio {
  padding: 30px 40px;
  border-bottom: 1px solid #f0f0f0;
}

.author-bio-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.author-info h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.author-info .author-title {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.author-info p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Related Posts */
.related-posts {
  padding: 40px;
}

.related-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.related-post-card {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-3px);
}

.related-post-card .post-image {
  height: 150px;
  overflow: hidden;
}

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

.related-post-card .post-content {
  padding: 20px;
}

.related-post-card .post-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

.related-post-card .post-title a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-card .post-title a:hover {
  color: var(--secondary);
}

.related-post-card .post-date {
  font-size: 0.8rem;
  color: #666;
}

/* Table of Contents */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: #666;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 15px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.toc-list a:hover,
.toc-list a.active {
  color: var(--secondary);
  border-left-color: var(--secondary);
  background: rgba(179, 25, 66, 0.05);
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  color: white;
  text-align: center;
}

.cta-widget h3 {
  color: white;
  margin-bottom: 15px;
}

.cta-widget p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-widget .theme-btn a {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.cta-widget .theme-btn a:hover {
  background: transparent;
  color: white;
}

/* Load More Button */
#load-more-btn {
  margin-top: 40px;
}

/* Responsive Design for Blog */
@media (max-width: 991.98px) {
  .blog-hero-title {
    font-size: 2.5rem;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .author-bio-content {
    flex-direction: column;
    text-align: center;
  }
  
  .share-buttons {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .blog-hero {
    padding: 100px 0 60px;
  }
  
  .blog-hero-title {
    font-size: 2rem;
  }
  
  .blog-hero-subtitle {
    font-size: 1rem;
  }
  
  .blog-content {
    padding: 60px 0;
  }
  
  .blog-post-content {
    padding: 40px 0;
  }
  
  .post-content {
    padding: 25px;
  }
  
  .social-share,
  .author-bio,
  .related-posts {
    padding: 25px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .blog-post-card .post-content {
    padding: 20px;
  }
  
  .post-featured-image {
    height: 250px;
  }
}
