/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #0277FF;
  --secondary: #333333;
}

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

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

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.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 */


.preLoader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner div {
  width: 8px;
  height: 100%;
  background: var(--white);
  margin: 0 2px;
  animation: load 1s infinite ease-in-out;
}

.spinner .rect2 {
  animation-delay: -0.9s;
}

.spinner .rect3 {
  animation-delay: -0.8s;
}

.spinner .rect4 {
  animation-delay: -0.7s;
}

.spinner .rect5 {
  animation-delay: -0.6s;
}

@keyframes load {

  0%,
  40%,
  100% {
    transform: scaleY(0.3);
  }

  20% {
    transform: scaleY(1);
  }
}

/* site hidden at start */
.site {
  opacity: 0;
  transition: 0.5s ease;
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 1rem 2.75rem 1rem 2.75rem;
  line-height: normal;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  /* padding: 1.875rem 0 1.875rem 0; */
  transition: 0.3s ease-in-out;
}

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

.navbar-nav {
  align-items: center;
  gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: #353535;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 695px;
  margin: 0 3.75rem 0 3.75rem;
}

.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 {
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  right: 4.875rem;
  left: unset;
  top: 0;
  bottom: 0;
  margin: auto;
  justify-content: center;
}

.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: 11px;
  width: 11px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  background-color: var(--white);
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
  height: 5px;
  width: 5px;
  margin: 0 0.75rem !important;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 4.0625rem;
  line-height: 1;
  font-weight: bold;
  text-transform: capitalize;
}

.main-slider p {
  color: var(--white);
  line-height: 1.4;
  font-size: 1.5625rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 1.5rem 0 1.5rem 0;
}

/* !MAIN HERO SLIDER CSS */


/* Investors Sec Css Start */


.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background-color: rgb(0 0 0 / 55%);
}

.form-inline .themeBtn {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 0 3rem;
  box-shadow: 0 0 44px 0 #A6CFFF;
}

.homeSlider .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  border: 1px solid #fff;
  left: -9px;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 50px;
}

.investors-sec {
  padding: 3.75rem 0 3.75rem 0;
}

.investors-content {
  text-align: center;
  padding: 3.9375rem 2.4375rem 3.5625rem 4.125rem;
  background: url(../images/builtbg.webp)center/cover no-repeat;
  border-radius: 15px;
  border-left: 1px solid rgb(2 119 255 / 31%);
  border-right: 1px solid rgb(2 119 255 / 31%);
}

.investors-content h3 {
  font-size: 2.125rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.investors-content p {
  line-height: 1.5;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--black);
  margin: 0.75rem 0 0 0;
}


/* Investors Sec Css End */


/* About Sec Css Start */


.mainHead {
  font-size: 3.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.about-content h4 {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 0.625rem 0 1.25rem 0;
  line-height: 1.3;
}

.about-content h4 span {
  display: block;
  font-weight: 600;
}

.about-content p {
  font-size: 1.125rem;
  color: #464646;
  line-height: 1.8;
}

.about-content p+p {
  margin: 2.5rem 0 2.5rem 0;
}

.about-content .btn-group .themeBtn {
  flex-shrink: 0;
}

.about-content .btn-group {
  gap: 1.5625rem;
}

.about-img {
  text-align: end;
}

.about-content .btn-group .themeBtn:first-child {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}


/* About Sec Css End */


/* Services Sec Css Start */

.services-sec {
  background-color: #F6F6F6;
  margin: 0 3.75rem 0 3.75rem;
}

.services-top {
  text-align: center;
  margin-bottom: 3rem;
}

.services-top p {
  width: 60%;
  margin: 1rem auto 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--black);
}

.services-wrap {
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 4px 208px 0 rgb(222 222 222 / 40%);
  padding: 2.5em;
  border-radius: 25px;
  transition: 0.6s ease;
  height: 100%;
}

.services-content h4 {
  font-size: 2.125rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.5px;
  margin: 1.875rem 0 0;
  text-transform: uppercase;
  min-height: 5rem;
}

.services-content p {
  color: #595858;
  font-size: 1.125rem;
  line-height: 1.5;
  min-height: 8.75rem;
}

.services-content .themeBtn {
  box-shadow: 0 0 44px 0 #A6CFFF;
}

.services-wrap:hover .services-img img {
  filter: brightness(0) invert(1);
}

.services-img img {
  transition: 0.6s ease;
}

.services-content h4,
.services-content p {
  transition: 0.6s ease;
}

.services-wrap:hover .services-content h4,
.services-wrap:hover .services-content p {
  color: var(--white);
}

.services-wrap:hover .themeBtn {
  background-color: var(--white);
  color: var(--primary);
}

.services-wrap:hover {
  background-color: var(--primary);
  transform: scale(0.98);
}

/* Services Sec Css End */


/* Blog Sec Css Start */

.blog-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-top h4 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
  letter-spacing: -0.3px;
  margin: 0.625rem 0 0.625rem 0;
}

.blog-top p {
  line-height: 1.6;
  width: 50%;
  margin: 0 auto 0;
  color: var(--black);
}

.blog-img img {
  width: 100%;
  border-radius: 25px;
  transition: 0.6s ease;
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-wrap {
  border: 1px solid #E6E6E6;
  box-shadow: 0 4px 208px 0 rgb(222 222 222 / 40%);
  padding: 1.25rem 1.25rem 2.375rem 1.25rem;
  border-radius: 25px;
  transition: 0.6s ease;
}

.blog-content h5 {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #979797;
  letter-spacing: -0.2px;
  margin: 1.25rem 0 0 0;
}

.blog-content h5 span {
  color: var(--black);
}

.blog-content h4 {
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1.5rem 0 1.1255rem 0;
}

.blog-content a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #0277FF;
  text-decoration: underline !important;
}


.blog-img a {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}

.blog-img a i {
  height: 2.5625rem;
  width: 2.5625rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 1px solid #fff;
  background-color: rgb(255 255 255 / 10%);
  font-size: 0.75rem;
  color: var(--white);
  backdrop-filter: blur(14px);
  transition: 0.6s ease;
  opacity: 0;
}

.blog-content {
  padding: 0 0 0 1rem;
}

.blogslider {
  padding: 0 0 5.75rem 0;
}

.blogslider .swiper-pagination-bullet {
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 50px;
  background-color: #414141;
  opacity: 1;
  margin: 0 0.5rem !important;
}

.blogslider .swiper-pagination-bullet-active {
  position: relative;
  height: 9px;
  width: 9px;
}

.blogslider .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  border: 1px solid #414141;
  left: -7px;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 50px;
}

.blogslider .swiper-slide-active .blog-wrap {
  box-shadow: 0 14px 40px 0 rgb(180 180 180 / 70%);
}

.blogslider .swiper-slide-active .blog-wrap .blog-img a i {
  opacity: 1;
}

/* Blog Sec Css End */


/* Contact Sec Css Start */


.contact-sec {
  background: url(../images/contactbg.webp)center/cover no-repeat;
  z-index: 1;
  margin: 0 3.75rem 0 3.75rem;
}


.contact-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 45%);
  z-index: -1;
}

.contact-top {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.contact-top h4 {
  font-size: 1.8125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  margin: 0.875rem 0 0.875rem 0;
}

.contact-top h2 {
  color: var(--white);
}

.contact-top p {
  width: 70%;
  margin: 0 auto 0 auto;
  color: var(--white);
  line-height: 1.6;
}

.contact-overlay {
  border-radius: 14px;
  background-color: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 30%);
  backdrop-filter: blur(129px);
  padding: 5.9375rem 0 5.9375rem 0;
}

.contact-form .form-control {
  height: 3.6875rem;
  border-radius: 7px;
  outline: unset;
  box-shadow: unset;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #A6A6A6;
  padding: 1em;
}

.contact-form .form-control::placeholder {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #A6A6A6;
}

.contact-form textarea.form-control {
  height: 120px;
}

.text-white{
  color: #fff !important;
}

.custom-control-label {
  font-size: 11px;
  font-weight: 500;
  color: #DFDFDF;
}

.custom-control-label::before {
  background-color: transparent;
}

.contact-form h5 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  margin: 1.5rem 0 1.25rem 0;
}

.contact-form button {
  border: unset;
  display: block;
  margin: 1rem auto 1rem;
  box-shadow: 0 0 44px 0 #A6CFFF;
  padding: 1.25rem 3rem;
}

.contact-main p {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #DFDFDF;
}

/* Contact Sec Css End */

/* Footer Sec Css Start */


footer {
  background-color: var(--black);
  padding: 6.0625rem 0 0 0;
  margin: 0 3.75rem 3.125rem 3.75rem;
}

footer h2 {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #8B8B8B;
  margin: 0 0 1rem 0;
}

.footer-items li a {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}

.footer-items li {
  margin: 0 0 0.5rem 0;
}

.footer-info li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-transform: capitalize;
  font-size: 0.9375rem;
  color: var(--white) !important;
}

.footer-info li+li {
  margin: 0.875rem 0 0 0;
}

footer p {
  color: #898989;
  line-height: 1.5;
  margin: 1.25rem 0 1.5rem 0;
  width: 86%;
}

.footer-social li a i {
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 1px solid var(--white);
  color: var(--white);
  transition: 0.6s ease;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social li a:hover i {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.12);
}

.footer-info li a i {
  height: 3.75rem;
  width: 3.75rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 1px solid var(--white);
  flex-shrink: 0;
  font-size: 1.06rem;
  transition: 0.6s ease;
}

.footer-info li a:hover i {
  transform: scale(1.2);
  background-color: var(--primary);
  border-color: var(--primary);
}

.footer-info li a:hover {
  color: var(--primary);
}

.footer-bottom {
  background-color: #161616;
  margin: 6.0625rem 0 0 0;
  padding: 2.25rem 0 2.25rem 0;
  position: relative;
}

.footer-bottom p {
  width: 100%;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}

.footer-bottom span {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  justify-content: end;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.footer-bottom span a {
  color: #0277FF;
  font-weight: 900;
}

.footer-form .form-control {
  border-radius: 50px;
  height: 4.3125rem;
  margin: 0 0 1.25rem 0;
  outline: unset;
  box-shadow: unset;
  padding: 0 0 0 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #737373;
}

.footer-form button {
  border: unset;
  text-align: end;
  display: block;
  margin-left: auto;
  padding: 1.25rem 3rem 1.25rem 3rem;
}

.footer-items li a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: var(--primary);
  bottom: -1px;
  transition: 0.6s ease;
}

.footer-items li a:hover::before {
  width: 100%;
}

.footer-items li a:hover {
  color: var(--primary);
}

.footer-bottom::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 72%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-color: #2A2A2A;
}

/* Footer Sec Css End */

/* Hover Effect Css Start */

.navbar-nav .nav-item .nav-link:hover {
  color: var(--black);
}

.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  height: 100%;
  width: 0%;
  background-color: var(--black);
  transition: 0.6s ease;
  z-index: -1;
}

.themeBtn:hover::before {
  width: 100%;
}

.themeBtn:hover {
  color: var(--white);
}

.about-content .btn-group .themeBtn:first-child:hover {
  color: var(--white);
}

.services-content .themeBtn:hover {
  color: var(--white);
}


.footer-form button::before {
  background-color: var(--white);
}

.footer-form button:hover {
  color: var(--primary);
}

.blog-img:hover img {
  transform: scale(1.1);
}

/* Hover Effect Css End */


/* Keyframe Css Start */

.services-img img {
  /* animation: bounce 1.8s infinite; */
}

/* Keyframes */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-18px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-8px);
  }
}


/* Keyframe Css End */


/* Inner Pages Css Start */

.about-page .about-content p+p {
  margin-bottom: 0;
}

.market-sec {
  background-color: #F6F6F6;
  margin: 0 3.75rem 0 3.75rem;
}

.market-items li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: capitalize;
}

.market-items li+li {
  margin: 0.625rem 0 0.625rem 0;
}

.market-content p {
  color: #464646;
  font-size: 1.125rem;
  margin: 2.5rem 0 2.5rem 0;
}

.market-content .mainHead {
  font-weight: 300;
  margin: 0 0 1.875rem 0;
}

.inner-banner {
  background: url(../images/inner1.webp)center/cover no-repeat;
  height: 560px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 3.75rem 0 3.75rem;
  z-index: 1;
}

.inner-banner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 55%);
  z-index: -1;
}

.inner-banner h2 {
  font-size: 4.0625rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.inner-page2 {
  background: url(../images/inner2.webp)center/cover no-repeat;
}

.inner-page3 {
  background: url(../images/inner3.webp)center/cover no-repeat;
}

.inner-page4 {
  background: url(../images/inner4.webp)center/cover no-repeat;
}

.offer-page {
  margin: 3.4375rem 3.75rem 0 3.75rem;
}

.articles-page {
  padding: 6.25rem 0 7rem 0;
}

.articles-page .row+.row {
  padding: 4.25rem 0 0 0;
}


.contact-page {
  margin: 3.75rem 3.75rem 4rem 3.75rem;
}


.about-page {
  padding: 8.25rem 0 9.75rem 0;
}


.articles-page .blog-wrap:hover {
  box-shadow: 0 14px 40px 0 rgb(180 180 180 / 70%);
}

.articles-page .blog-wrap:hover figure a i {
  opacity: 1;
}

/* Inner Pages Css End */

.services-img {
  height: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.75rem;
}

.custom-control-label::after {
  top: 50%;
  transform: translateY(-50%);
}

.custom-control-label::before {
  top: 50%;
  transform: translateY(-50%);
}

.form-group-wrapper {
  column-count: 3;
  margin-bottom: 1.875rem;
}

.form-group-wrapper .form-group {
  margin-bottom: .375rem;
}


section.blog-sec.articles-page.blog-detail .blog-wrap {
  box-shadow: unset;
  border: unset;
}

section.blog-sec.articles-page.blog-detail .blog-content h4 {
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.125rem;
}



section.inner-banner.inner-page1.bolginer1 {

  background: url(../images/innerblog1.png)center/cover no-repeat;
}

.wrapblg h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #979797;
  text-align: center;
  margin-bottom: 10px;
}

.wrapblg h4 span {
  color: #000000;
}

.wrapblg h2 {
  font-size: 60px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  width: 60%;
  margin: 0 auto 4rem;
  text-transform: uppercase;
}

.wrapblg h5 {
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  margin: 2rem 0 1rem;
}

.wrapblg p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #595858;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.wrapblg h3 {
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.strong-system-section {
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.rounded-custom {
  /* border-radius: 20px; */
  /* object-fit: cover; */
  /* width: 100%; */
  /* height: 350px; */
}

.section-titlebg1 {
  font-size: 45px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.component-badge {
  background-color: #f8f9fa;
  border: 1px solid #f1f3f5;
  border-radius: 50px;
  padding: 22px 27px;
  font-size: 28px;
  font-weight: 500;
  color: #555;
  display: inline-flex;
  align-items: center;
  /* margin-right: 15px; */
  /* margin-bottom: 15px; */
}

.component-badge .dot {
  width: 4px;
  height: 4px;
  background-color: #a0a0a0;
  border-radius: 50%;
  margin-right: 10px;
}

.article-card {
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.article-card .rounded-inner {
  border-radius: 24px;
  /* object-fit: cover; */
  /* height: 220px; */
}

.card-body {
  padding: 0 1.25rem 1.5rem;
}

.article-meta {
  font-size: 1.125rem;
  color: #8c8c8c;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.author-name {
  font-weight: 700;
  color: #333;
}

.article-title {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  min-height: 44px;
}

.read-article-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4a90e2;
  text-decoration: none;
  border-bottom: 1px solid #4a90e2;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.read-article-link:hover {
  color: #2a70c2;
  border-color: #2a70c2;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .rounded-custom {
    height: 250px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .component-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

section.blog-new1 {
  padding-bottom: 2rem;
}

.componentflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.coursebaner-list {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 1.5rem;
}

ul.coursebaner-list li {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
}

ul.coursebaner-list li img {
  margin-right: 10px;
}


.what-you-will-learn {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ffffff;
}

.what-you-will-learn .rounded-custom {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.what-you-will-learn .section-title {
  font-weight: 500;
  font-size: 60px;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.what-you-will-learn .section-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #464646;
  margin-bottom: 32px;
}

.what-you-will-learn .learning-list .icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.what-you-will-learn .learning-list .list-text {
  font-size: 1rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.4;
}

.what-you-will-learn .learning-list li {
  margin-bottom: 16px;
}

.what-you-will-learn .learning-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .what-you-will-learn .section-title {
    /* font-size: 40px; */
  }

  .what-you-will-learn .section-description {
    font-size: 1.125rem;
  }

  .what-you-will-learn .learning-list .list-text {
    font-size: 1rem;
  }
}



.curriculum-section {
  background-color: #F6F6F6;
  padding: 80px 0;
  margin: 0 60px 60px;
}

.curriculum-main-title {
  text-align: center;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.custom-row-spacing {
  margin-left: -15px;
  margin-right: -15px;
}

.custom-row-spacing>[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.curriculum-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}



.module-number {
  font-size: 34px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}

.module-name {
  font-size: 20px;
  font-weight: 500;
  color: #181C23;
  margin-bottom: 12px;
}

.module-description {
  font-size: 1.125rem;
  font-weight: 500;
  color: #9C9C9C;
  line-height: 1.6;
  margin-bottom: 0;
  width: 90%;
}

.card-icon {
  margin-bottom: 50px;
}


.text-primary-custom {
  color: #3b82f6 !important;
}

.text-muted-custom {
  color: #9ca3af !important;
}

/* Section Styles */
.upcoming-workshops-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.header-row {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-desc {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
}

/* Filter Buttons */
.btn-filter {
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 12px;
}

.btn-filter:first-child {
  margin-left: 0;
}

.btn-filter-active {
  background-color: #3b82f6;
  color: #ffffff;
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.btn-filter-active:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-filter-outline {
  background-color: #ffffff;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

.btn-filter-outline:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Card Styles */
.workshop-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-img-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}

.card-img-container img {
  /* width: 100%; */
  /* height: 220px; */
  /* object-fit: cover; */
  border-radius: 14px;
}

.badge-topic {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #3b82f6;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.card-content {
  padding: 0 4px;
}

.meta-info {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
}

.meta-item i {
  margin-right: 6px;
  font-size: 0.9rem;
}

.meta-date {
  color: #3b82f6;
  margin-right: 24px;
}

.meta-type {
  color: #9ca3af;
  font-weight: 500;
}

.card-heading {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-text {
  font-size: 1.125rem;
  color: #9C9C9C;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
}

.btn-card-action {
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  border: none;
}

.btn-card-action:hover {
  background-color: #2563eb;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .actions-col {
    margin-top: 20px;
    justify-content: flex-start !important;
  }
}

#custom-training-program {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.training-cta-container {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
  /* Replicating the soft blue glows in the corners */
  background-image: radial-gradient(circle at 100% 0%, rgb(232 241 255 / 85%) 0%, rgba(255, 255, 255, 0) 50%), radial-gradient(circle at 0% 100%, rgb(235 244 255) 0%, rgba(255, 255, 255, 0) 50%);
}

.training-cta-title {
  color: #181C23;
  font-weight: 600;
  font-size: 37px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.training-cta-desc {
  color: #414754;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.btn-advisory {
  color: #0059BB;
  border: 1.5px solid #0059BB;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-advisory:hover {
  background-color: #2a5a9c;
  color: #ffffff;
  text-decoration: none;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .training-cta-container {
    padding: 50px 20px;
  }

  .training-cta-title {
    font-size: 20px;
  }

  .training-cta-desc {
    font-size: 14px;
  }
}

.upcoming-title {
  font-size: 60px;
  font-weight: 500;
}

.upcoming-desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}


/* Form Controls */
.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #414754;
  margin-bottom: 6px;
  text-transform: capitalize;
  font-family: 'Montserrat';
}

.form-control,
.custom-select {
  border: 1px solid #C1C6D7;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  height: 56px;
  box-shadow: none !important;
  transition: border-color 0.2s;
  font-size: 1.125rem;
  font-weight: 400;
  color: #181C23;
}

.form-control:focus,
.custom-select:focus {
  border-color: var(--primary-blue);
}

.form-control::placeholder {
  color: #9ca3af;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.step-number {
  width: 37px;
  height: 37px;
  background-color: #0277FF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 1rem;
  font-weight: bold;
}

.step-title {
  font-size: 27px;
  font-weight: 600;
  margin: 0;
  color: #181C23;
}

/* Payment Section */
.payment-container {
  background-color: var(--bg-light);
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 24px;
}

.payment-container .form-control {
  background-color: #ffffff;
}

/* Checkboxes */
.custom-checkbox .custom-control-label::before {
  border-radius: 4px;
  border: 1px solid #d1d5db;
  width: 1rem;
  height: 1rem;
  top: 14px;
}

.custom-checkbox .custom-control-label::after {
  width: 1rem;
  height: 1rem;
  top: 15px;
}

.custom-control-input:checked~.custom-control-label::before {
  background-color: #0059BB;
  border-color: #0059BB;
}

.custom-control-label {
  font-size: 1rem;
  color: #414754;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
}

.custom-control-label a {
  color: #0277FF;
  text-decoration: none;
}

.custom-control-label a:hover {
  text-decoration: underline;
}

/* Order Summary Card */
.order-summary-card {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #ffffff;
}

.summary-body {
  padding: 28px 24px;
}

.summary-title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #181C23;
}

.product-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.product-image {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 16px;
  border: 1px solid var(--border-color);
}

.product-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #181C23;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.product-details p {
  font-size: 1rem;
  color: #414754;
  margin: 0;
  font-weight: 400;
}

.summary-line-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 500;
  color: #414754;
  margin-bottom: 12px;
}

.summary-line-item .price {
  color: #181C23;
  font-weight: 600;
}

.summary-divider {
  border-top: 1px solid #C1C6D7;
  margin: 20px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.summary-total-label {
  font-size: 15px;
  font-weight: 800;
  color: #000;
}

.summary-total-value {
  text-align: right;
}

.total-amount {
  font-size: 27px;
  font-weight: bold;
  color: #0277FF;
  line-height: 1.1;
  margin-bottom: 4px;
}

.total-currency {
  font-size: 9px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-payment {
  background-color: #0059BB;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-weight: 500;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}

.btn-payment:hover {
  color: #ffffff;
  opacity: 0.9;
}

.btn-payment svg {
  margin-right: 8px;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.summary-footer {
  background-color: #F6F6F6;
  padding: 36px 24px 36px 27px;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #f3f4f6;
}

.summary-footer svg {
  width: 24px;
  height: 25px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  fill: #0059BB;
}

.summary-footer p {
  font-size: 13px;
  color: #414754;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.summary-footer p strong {
  font-weight: bold;
  font-size: 13px;
  color: #181C23;
}

/* Testimonial Card */
.testimonial-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.03);
}

.testimonial-avatar {
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
  flex-shrink: 0;
}

.testimonial-content p:first-child {
  font-size: 17px;
  color: #414754;
  margin: 0 0 6px 0;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 13px;
  font-weight: bold;
  color: #181C23;
  margin: 0;
}


.personalized-advice {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
  letter-spacing: -0.02em;
  max-width: 95%;
}

.section-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #464646;
  margin-bottom: 2rem;
  font-weight: 400;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bank {
  width: 64px;
  height: 64px;
  background-color: #EFEFFC;
  border-radius: 14px;
}

.icon-chart {
  width: 48px;
  height: 48px;
  background-color: #F0F4FF;
  border-radius: 12px;
  margin-bottom: 4px;
  /* Align slightly off-bottom with the larger icon */
}

.feature-image {
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.floating-card {
  position: absolute;
  bottom: -15px;
  left: -40px;
  background-color: #ffffff;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 280px;
  z-index: 10;
}

.card-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0277FF;
  text-transform: uppercase;
  letter-spacing: 0.91px;
}

.card-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #374151;
  font-weight: 600;
}


.personalized-advice .section-title {
  font-size: 47px;
  font-weight: 500;
  text-transform: capitalize;
}

.image-container .card-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #181C23;
}

.process-section {
  background-color: #F6F6F6;
  padding: 80px 0;
  width: 100%;
  margin: 0 3.75rem;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: #e5ebff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.step-icon {
  width: 22px;
  height: 22px;
  color: #5a85ff;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.step-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #9C9C9C;
  margin: 0;
  font-weight: 500;
}


.session-benefits-section {
  background-color: #FFFFFF;
}

.session-image {
  border-radius: 12px;
  min-height: 280px;
}

.session-card {
  background-color: #F5F5F5;
  border-radius: 12px;
  padding: 45px 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.watermark-icon {
  position: absolute;
  top: 25px;
  right: 40px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.session-heading {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.91px;
}

.session-list {
  position: relative;
  z-index: 1;
}

.session-list li {
  font-size: 1rem;
  font-weight: 600;
  color: #181C23;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.session-list li:last-child {
  margin-bottom: 0;
}

.list-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #DDE6F0;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}

#process-section .section-title {
  font-size: 3.75rem;
  font-weight: 500;
  letter-spacing: -2px;
}

section#process-section .icon-wrapper {
  height: 4rem;
  width: 4rem;
  background-color: #D8E2FF;
}

section#process-section .step-title {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: #181C23;
}

.strategic-advantage-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.strategic-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.strategic-content {
  padding-left: 20px;
}

.strategic-heading {
  font-size: 47px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  margin-right: -70px;
}

.strategic-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #464646;
  line-height: 1.7;
  margin-bottom: 22px;
}


.member-benifit .row+.row {
  padding: 3rem 0 0 0;
}


.pricing-section {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #E2E8F0;
  transition: 0.6s ease;
}

.basic-card {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
}

.pricing-card:hover {
  background-color: #F6F6F6;
  border: none;
  box-shadow: 0 25px 2px 0 rgb(0 0 0 / 5%);
  padding: 50px 40px;
  position: relative;
  z-index: 10;
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .pro-card {
    transform: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(50, 117, 251, 0.3);
  white-space: nowrap;
}

.plan-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.basic-card .plan-title {
  color: #0059BB;
}

.pro-card .plan-title {
  color: var(--text-dark);
}

.plan-subtitle {
  font-size: 0.875rem;
  color: #414754;
  font-weight: 500;
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 35px;
}

.plan-price .currency {
  font-size: 37px;
  font-weight: bold;
  color: #0059BB;
}

.plan-price .amount {
  font-size: 37px;
  font-weight: bold;
  color: #0059BB;
}

.plan-price .period {
  font-size: 1rem;
  color: #414754;
  font-weight: 500;
  margin-left: 9px;
}

.plan-features {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  flex-grow: 1;
}

.plan-features li {
  font-size: 1rem;
  color: #414754;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  color: #0059BB;
  flex-shrink: 0;
}

.btn-pricing {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0059BB;
}

.btn-pricing-outline {
  background-color: #ffffff;
  border: 2.1px solid #0059BB;
  padding: 1.15rem;
}

.btn-pricing-outline:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
}

.btn-pricing-solid {
  background-color: var(--primary-blue);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(50, 117, 251, 0.25);
}

.btn-pricing-solid:hover {
  background-color: #2462de;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(50, 117, 251, 0.35);
}

.pricing-section .section-header {
  flex-direction: column;
  margin-bottom: 3rem;
}

.process-section .section-header h2 {
  font-size: 3.75rem;
  font-weight: 500 !important;
}

.pricing-section .section-header h2 {
  font-size: 3.75rem;
  font-weight: 500 !important;
  letter-spacing: -1.91px;
}

.pricing-section .recommended-badge {
  background-color: #0277FF;
  padding: 0.65rem 1.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.91px;
  top: -3rem;
}

.pricing-section .section-header p {
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  max-width: 100%;
  color: #464646 !important;
}

.pricing-card:hover .basic-card .plan-title {
  color: #181C23;
}

.pricing-card:hover .plan-title {
  color: #181C23;
}

.pricing-card:hover .btn-pricing-outline {
  background-color: #0277FF;
  color: var(--white);
  border-color: #0277FF;
}

.pricing-card:hover .plan-features li {
  color: #181C23;
}

.checkout-wrapper.purchase-sec {
  padding: 6rem 0 6rem 0;
}


/* ============================================================
   Course Curriculum Page (non-responsive base styles)
   ============================================================ */
.cc-courses-section {
    background: #f4f6f9;
    padding: 72px 0;
}

.cc-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cc-course-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.cc-course-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.cc-course-card--featured {
    border: 2px solid #c8a84b;
}

.cc-course-card h3 {
    font-size: 17px;
    color: #0d1b2a;
    line-height: 1.35;
    font-weight: 700;
}

.cc-course-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.cc-btn-purchase {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.cc-btn-purchase:hover {
    background: #1558b0;
    color: #ffffff;
    text-decoration: none;
}

/* ── Course Curriculum Modal ── */
.cc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.cc-modal-overlay.active {
    display: flex;
}

.cc-modal {
    background: #ffffff;
    border-radius: 14px;
    padding: 44px 40px 36px;
    width: min(460px, 92vw);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: ccModalIn 0.3s ease;
}

@keyframes ccModalIn {
    from { opacity: 0; transform: translateY(-18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cc-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.2s;
}

.cc-modal-close:hover { color: #333; }

.cc-modal h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 22px;
    color: #0d1b2a;
}

.cc-modal-tabs {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dde1e7;
    margin-bottom: 26px;
}

.cc-modal-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: #666;
    transition: background 0.2s, color 0.2s;
}

.cc-modal-tab.active {
    background: #1a73e8;
    color: #ffffff;
}

.cc-field-wrap {
    position: relative;
    margin-bottom: 14px;
}

.cc-field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    pointer-events: none;
}

.cc-field-wrap input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #dde1e7;
    border-radius: 7px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.cc-field-wrap input::placeholder { color: #aaa; }

.cc-field-wrap input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.cc-btn-submit {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.cc-btn-submit:hover { background: #1558b0; }

.cc-modal-footer-note {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #666;
}

.cc-modal-footer-note a {
    color: #1a73e8;
    text-decoration: none;
    cursor: pointer;
}

.cc-register-only { display: none; }
