/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Local Font */
/* @font-face {
font-family: "Font Name";
src: url("../fonts/fontpath.ttf");
} */

:root {
  --white: #fff;
  --black: #000;
  --primary: #0b3543;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
  margin: 0 40px;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #001e28;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.title {
  color: #356879;
  font-size: 2.875rem;
  font-weight: 500;
}

.title span {
  color: #0b3543;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 15px 30px;
  line-height: normal;
  border-radius: 30px;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  width: 100%;
  padding: 0.9625rem 3.125rem;
  transition: 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.8); /* Slight transparency */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds depth */
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #001e28;
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
}

.navbar-collapse .form-inline {
  margin-left: 50px;
}

/* Mega Menu Box */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 570px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

/* Mega Dropdown Container */
.mega-dropdown {
  position: relative;
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

/* Mega Menu Box */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

/* Columns container */
.mega-columns {
  display: flex;
  gap: 40px; /* Space between columns */
}

/* Individual Column */
.mega-column {
  padding: 0 10px;
}

/* Menu Items */
.mega-menu .dropdown-item {
  display: block;
  padding: 8px 0;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mega-menu .dropdown-item:hover {
  color: #007bff;
  padding-left: 5px;
  text-decoration: none;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 100vh;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

/* Hero section */
.hero_sec {
  background: url(../images/banner-bg.png) no-repeat center / cover;
  z-index: 31;
  position: relative;
}

.hero_content h1 {
  font-size: 10rem;
  color: #0b3543;
  text-align: center;
}

.hero_content h1 span {
  color: #356879;
}

/*
.hero_form {
background: url(../images/marque.png) no-repeat center / cover;
margin-top: 160px;
border-radius: 60px;
position: relative;
}

.hero_form .hero_book {
position: absolute;
left: 20%;
top: -56%;
}

.hero_img {
position: absolute;
left: 0%;
top: 0%;
}

.hero_para form {
display: flex;
align-items: center;
gap: 12px;
}

.hero_para {
margin-left: 80px;
padding-bottom: 75px;
}

.hero_para p {
margin-bottom: 19px;
width: 78%;
}

.hero_para form div {
background-color: #fff;
border-radius: 60px;
padding: 1rem;
color: #5e7278;
}

.hero_para form div input {
border: unset;
outline: unset;
font-size: 15px;
font-weight: 400;
color: #333333;
}
.hero_para form div input::placeholder {
color: #5e7278;
}

.hero_para button {
border: unset;
outline: unset;
} */

/* Hero section */

.hero_sec h1 {
  font-size: 10rem;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  width: 90%;
  margin: auto;
}

.hero_sec h1 span {
  color: #356879;
}

.hero_content {
  background: linear-gradient(
    to left,
    #0b3543 0%,
    rgba(255, 255, 255, 0.89) 100%
  );
  border-radius: 102px;
  margin-top: 165px;
  position: relative;
}

.hero_content .hero_book {
  position: absolute;
  top: -57%;
  left: 22%;
  z-index: 11;
}

.hero_content p {
  margin-bottom: 19px;
}

.hero_content form div {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 30px;
  background: #fff;
  padding: 0rem 2rem;
}

.hero_content form {
  display: flex;
  gap: 10px;
}

.hero_content form input {
  outline: unset;
  border: unset;
  width: 100%;
  height: 100%;
}

.hero_para form button {
  border: 0;
  outline: unset;
}

.hero_para {
  margin: 0 0 75px 80px;
  z-index: 11;
  position: relative;
}

img.hero_girl {
  z-index: 11;
  position: relative;
}

marquee h1 {
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-size: 19.375rem !important;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.hero_content .first_marquee {
  position: absolute;
  top: -12%;
}

.hero_content .sec_marquee {
  position: absolute;
  top: 28%;
}

.hero_content .third_marquee {
  position: absolute;
  top: 71%;
}

/* brand logo */

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  border: 1px solid rgb(24 64 77 / 9%);
  border-radius: 70px;
  background: #edf2f5;
  margin-top: 1rem;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logo_items {
  display: inline-flex;
  animation: 35s slides infinite linear;
  gap: 77px;
  margin-right: 77px;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logos::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100%;
  background: rgb(237 242 245 / 74%);
  backdrop-filter: blur(3px);
}

.logos::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 300px;
  height: 100%;
  background: rgb(237 242 245 / 74%);
  backdrop-filter: blur(3px);
}

section.hero_wrapper {
  padding: 6rem 0 0;
}

/* ABout us */

section.about_us {
  padding: 8rem 0 5rem;
}

section.about_us marquee {
  position: absolute;
  top: -9%;
}

.about_us h1 {
  color: black;
  -webkit-text-fill-color: white;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(11 53 67 / 20%);
  font-size: 19.375rem;
  font-family: "Poppins";
}

.about_head h2 {
  color: #356879;
  font-size: 2.875rem;
  font-weight: 500;
}

.about_head h2 span {
  color: #0b3543;
}

.about_des p {
  margin: 10px 0 32px;
}

.about_des h5 {
  background: linear-gradient(
    to left,
    #0b3543 0%,
    rgba(249, 251, 255, 0.89) 100%
  );
  border-radius: 20px;
  width: fit-content;
  padding: 10px 20px;
}

.about_des h5 span {
  background: linear-gradient(90deg, #0b3543 67%, #fafbff 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.about_book {
  position: absolute;
  top: 40%;
  left: 4%;
}

section.rating {
  background: #f0f3f6;
  padding: 10rem 0;
  margin-top: 12rem;
  border-radius: 102px;
}

/* Rating section */
.rating {
  background-color: #f0f3f6;
  border-radius: 102px;
}

.rating_box {
  text-align: center;
  height: 250px;
  width: 250px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 3px dashed transparent;
  background: linear-gradient(#f2f5f7, #f2f5f7) padding-box,
    /* inner bg */ linear-gradient(180deg, #0b3543, #eff2f5) border-box;
  position: relative;
  z-index: 11;
}

.rating_box h3 {
  color: var(--primary);
  font-size: 44px;
  font-weight: 600;
  margin: 20px 0 15px;
}

.rating_box h5 {
  color: #001e28;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

/* utmost section */
section.utmost {
  margin: 0;
}

section.utmost h2 {
  width: 45%;
  margin: 0 auto 60px;
  text-align: center;
}

.heading_marquee {
  position: absolute;
  top: -6%;
}

.heading_marquee h1 {
  font-size: 19.375rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #000000;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0 0 0 / 16%);
  line-height: 1;
}

.utmost .nav {
  justify-content: center;
  border: unset;
  width: fit-content;
  background-color: #f0f3f6;
  margin: auto;
  padding: 18px 42px;
  border-radius: 50px;
  gap: 35px;
}

.utmost .nav-tabs .nav-link {
  color: var(--primary);
  font-size: 1rem;
  padding: 0;
}

.utmost .nav-tabs .nav-item {
  padding: 10px;
}

.utmost .nav-tabs .nav-item.show .nav-link,
.utmost .nav-tabs .nav-link.active {
  color: var(--primary);
  font-weight: 700;
  border: unset;
  border-bottom: 1px solid;
  background: unset;
}

.utmostSlide {
  padding: 3rem 5rem;
  position: relative;
}

.utmostSlide::before {
  position: absolute;
  content: "";
  width: 376px;
  height: 82%;
  background-color: rgb(255 255 255 / 19%);
  top: 9%;
  left: 0%;
  z-index: 11;
  backdrop-filter: blur(12px);
}

.utmostSlide::after {
  position: absolute;
  content: "";
  width: 376px;
  height: 82%;
  background-color: rgb(255 255 255 / 19%);
  top: 9%;
  right: 0%;
  z-index: 11;
  backdrop-filter: blur(12px);
}

/* Team section */
section.our_team {
  margin: 0;
}

.our_team h2 {
  width: 48%;
  margin: auto;
  text-align: center;
}

.teamSlide {
  padding: 6rem 0rem;
}

.team_img {
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  height: 558px;
}

.team_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #f0f3f6 0%,
    rgba(240, 243, 246, 0.93) 63%,
    rgba(240, 243, 246, 0) 78%
  );
}

.team_img .team_card {
  position: absolute;
  top: 0;
}

.team_card {
  display: flex;
  gap: 33px;
  padding: 65px 0 34px 65px;
  border-radius: 100px;
}

.team_content {
  width: 50%;
}

.team_card .team_content h5 {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #f0f3f6, #0b3543);
  width: fit-content;
  padding: 10px 30px;
  border-radius: 20px;
}

.team_card .team_content h3 {
  color: #0b3543;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  margin: 18px 0 6px;
  width: 94%;
}

.team_card .team_content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.team_card .team_content .btn-group {
  gap: 20px;
  margin-bottom: 22px;
}

.team_card .team_content > a {
  color: #356879;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline !important;
  display: block;
  width: fit-content;
}

figure.team_img img {
  width: 100%;
}

.teamSlide .swiper-slide.swiper-slide {
  opacity: 0.8;
  filter: blur(5px);
}

.teamSlide .swiper-slide.swiper-slide-active {
  opacity: 1;
  filter: blur(0px);
}

/* Your Story */

section.your_story {
  padding: 0 0 6rem;
}

.your_story .your_content {
  max-width: 1590px;
  background: linear-gradient(to right, #0b3543, #1a566b);
  border-radius: 192px;
  text-align: center;
  margin: auto;
  padding-block: 52px;
  position: relative;
}

.your_content .title {
  color: #f9f9f9;
  width: 55%;
  margin: 0 auto 0.938rem;
}

.your_content p {
  color: #fefefe;
  margin: 0 auto 26px;
  width: 28%;
}

.your_content .themeBtn {
  background-color: #ffffff;
  color: var(--primary);
}

.your_content .btn-group {
  gap: 1.25rem;
}

.your_story marquee {
  position: absolute;
  top: 0%;
  left: 0%;
}

.your_story marquee h1 {
  color: #f9f9f9;
  font-size: 12.5rem !important;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.your_content .book1 {
  position: absolute;
  top: -5%;
  left: -6%;
  z-index: 111;
}

.your_content .book2 {
  position: absolute;
  top: -21%;
  right: 4%;
  z-index: 111;
}

/* Professional */
.professional {
  margin: 0;
}

.professionalSlide::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 0;
  width: 370px;
  height: 88.5%;
  background: rgb(217 217 217 / 22%);
  z-index: 11;
  backdrop-filter: blur(4px);
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.professionalSlide::after {
  content: "";
  position: absolute;
  top: 6%;
  right: 0;
  width: 370px;
  height: 88.5%;
  background: rgb(217 217 217 / 22%);
  z-index: 11;
  backdrop-filter: blur(4px);
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
}

.professional .title {
  margin: auto;
  text-align: center;
  width: 35%;
}

.professionalSlide {
  padding: 40px 0;
  position: relative;
}

.professional_card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.professional_card .card_content {
  position: absolute;
  bottom: 24px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.professional_card .card_content h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.professional_card .card_content a {
  background-color: #fff;
  color: #0b3543;
  padding: 10px 22px;
  border-radius: 23px;
  font-size: 14px;
  font-weight: 500;
}

.professional_card img {
  height: 440px;
}

/* .author-section */

.author-section {
  border-radius: 102px;
  background: #f0f3f6;
  padding: 116px 1rem 112px 1rem;
  position: relative;
}

.author-section h2 {
  padding-bottom: 42px;
}

.author-section .heading_marquee {
  position: absolute;
  top: -7% !important;
}

.author-card {
  padding: 0.8rem;
  background: #e2e9ef;
  display: flex;
  border-radius: 30px;
}

.author-card figure img {
  width: 270px;
  height: 100%;
}

.author-card .author-card-sub {
  padding-left: 1.6rem;
}

.author-card-child {
  display: flex;
  justify-content: space-between;
}

.author-card-child h4 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #001e28;
}

.author-card-sub p {
  padding-top: 1.3rem;
  font-size: 1rem;
  padding-right: 3.5rem;
  font-family: "Poppins", sans-serif;
  color: #001e28;
}

.author-card-sub .fas {
  color: #171717;
}

.authorslide .swiper-slide-active {
  opacity: 1 !important;
  filter: blur(0px) !important;
}

.authorslide .swiper-slide {
  opacity: 0.5;
  filter: blur(5px);
}

/* publish-form */
.publish-form {
  position: relative;
}

.publish-form h2 {
  text-align: center;
  padding-bottom: 1rem;
}

.publish-form p {
  text-align: center;
  padding-bottom: 3rem;
}

.contact-form input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 13px;
  background: #f0f3f6;
  border: unset;
}

.contact-form input::placeholder {
  padding-left: 1rem;
}

.contact-form .form-line {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2.9rem;
}

.contact-form .form-line .themeBtn {
  padding: 7px 2.9rem;
}

footer {
  margin: 0 41px 0 41px;
  background: #0b3543;
  padding: 5rem 0 0 0;

  border-radius: 85px;
}

.social-icon {
  padding-top: 4rem;
}

.social-icon .social-link {
  display: flex;
  gap: 2rem;
}

.social-icon .social-link li a {
  color: white !important;
}

.footer-sub {
  display: flex;
  justify-content: space-between;
}

.footer-sub h2 {
  padding-right: 65px;
}

.footer-sign {
  display: flex;
  align-items: center;
  position: relative;
}

form.footer-sign input {
  width: 449px !important;
  padding: 11px;
  border-radius: 30px;
  height: 53px;
  background: transparent;
  border: 1px solid #fff;
  outline: unset;
}

form.footer-sign input::placeholder {
  color: white;
  padding-left: 1rem !important;
}

.sing-btn .themeBtn {
  font-size: 1rem;
  padding: 13px 30px;
  background: #ffffff;
  color: #0b3543;
  border: 1px solid #ffffff;
}

.sing-btn {
  position: absolute;
  right: 0;
}

.footer-menu {
  border-top: 1px solid #ffffff59;
  margin-top: 4rem;
  padding: 5rem 0;
}

.footer-menu h3 {
  font-size: 20px;
  color: #ffffff;
  font-family: "Poppins", serif;
  padding-bottom: 1rem;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
}

.footer-nav ul {
  gap: 1rem;
}

.footer-nav ul li {
  color: #ffffff;
  padding: 0.2rem 0;
}

.footer-nav ul li a {
  color: #ffffff;
}

.term-footer {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  width: 100%;
  padding: 2rem 1.3rem 0.9rem 1.3rem;
  border-radius: 30px 30px 0 0;
  align-items: center;
}

.term-footer a {
  color: #001e28;
}
