/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500@S&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #334155;
}

p,
.paragraph {
  font-weight: 400;
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f172a;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 60px;
}

@media (max-width: 575px) {

  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-size: 40px;
}

@media (max-width: 575px) {

  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}

@media (max-width: 575px) {

  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-size: 20px;
}

@media (max-width: 575px) {

  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 18px;
}

@media (max-width: 575px) {

  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}

@media (max-width: 575px) {

  h6,
  .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

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

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary-gold {
  background: #d4af37;
  color: #fff;
  border: 1px solid #d4af37;
}

.btn-primary-gold::before {
  background: #1a2a6c;
}

.btn-primary-gold:hover {
  background: #1a2a6c;
  color: #fff;
  border-color: #1a2a6c;
}

.text-gold-accent {
  color: #d4af37;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

/* section about modern */
.section-about-modern {
  padding: 120px 0;
  background-color: #fcfcfc;
}

.section-title-modern {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #0d1117;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.about-text-lead {
  font-size: 18px;
  color: #1a2a6c;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-modern-img {
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.image-overlay-gold {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 4px solid rgba(212, 175, 55, 0.3);
  z-index: 1;
  transition: all 0.5s ease;
}

.about-image-wrapper:hover .image-overlay-gold {
  top: -10px;
  right: -10px;
  border-color: rgba(212, 175, 55, 0.6);
}

.image-badge-gold {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: #1a2a6c;
  color: #fff;
  padding: 25px;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  border-right: 4px solid #d4af37;
}

.badge-number {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .section-title-modern {
    font-size: 32px;
  }

  .image-badge-gold {
    left: 20px;
    bottom: 0px;
  }
}

/* /section about modern */

.btn-primary {
  background: #1a2a6c;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #1a2a6c !important;
  color: #1a2a6c;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #13205a;
  color: #1a2a6c;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #ffbc3b;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #ffbc3b;
}

.btn-secondary:active {
  background: #ffbc3b;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #1a2a6c;
  color: #1a2a6c;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #1a2a6c;
  color: #1a2a6c;
}

.btn-primary-outline:active {
  background: #1a2a6c;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #d4af37;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #bfa332;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #1a2a6c !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #d4af37 !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "Playfair Display", serif;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
  transform-origin: top;
  font-weight: 600;
  background: #d4af37;
}

.top-header a,
.top-header .text-color {
  color: #1a2a6c !important;
}

.top-header a:hover {
  color: #fff !important;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37;
  }
}

.navigation {
  background-color: transparent;
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #ffbc3b 30%);
  }
}

.navbar-nav {
  padding-left: 50px;
  background: transparent;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #1a1a37;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: #fff;
}

/* Ensure navbar-brand has good color on transparent */
.navbar-brand {
  color: #fff !important;
}

@media (max-width: 991px) {
  .navigation {
    background: #1a1a37 !important;
  }
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: unset;
    transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  padding: 250px 0 290px;
  position: relative;
  overflow: hidden;
  background-color: #1a2a6c;
  /* Fallback */
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .overlay::before {
  z-index: 1;
}

.video-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.btn-video-control {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-video-control:hover {
  background: #d4af37;
  color: #1a2a6c;
}

.btn-video-control i {
  font-size: 20px;
}


.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

/* banner feature hybrid */
.banner-feature-hybrid {
  position: relative;
  background-color: #0d1117;
  /* Very dark background */
}

.banner-feature-img {
  filter: brightness(0.8) contrast(1.1);
  transition: all 0.5s ease;
}

.banner-feature-hybrid:hover .banner-feature-img {
  filter: brightness(1) contrast(1);
}

.feature-blocks-modern {
  margin-top: -100px;
  background: rgba(26, 42, 108, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 70px;
  height: 100%;
}

@media (max-width: 991px) {
  .feature-blocks-modern {
    margin-top: 0;
    padding: 50px 30px;
  }
}

.feature-item-modern {
  transition: all 0.3s ease;
}

.feature-item-modern:hover {
  transform: translateX(10px);
}

.feature-icon-modern {
  font-size: 45px;
  color: #d4af37;
  margin-bottom: 20px;
  display: block;
}

.feature-title-modern {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-text-modern {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-family: "Inter", sans-serif;
}

/* /banner feature hybrid */

/* section journey modern */
.section-journey-modern {
  padding: 120px 0;
  background-color: #fff;
}

.journey-image-container {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.journey-modern-img {
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.journey-accent-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  background: #f8f9fa;
  border-bottom: 8px solid #d4af37;
  border-right: 8px solid #d4af37;
  z-index: 1;
}

@media (max-width: 991px) {
  .journey-image-container {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

/* /section journey modern */

/* section stats modern */
.section-stats-modern {
  padding: 80px 0;
  background: #1a2a6c;
  position: relative;
}

.stats-wrapper-gold {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 40px 0;
}

.stats-number {
  color: #fff;
  font-size: 56px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-label {
  margin-bottom: 0;
  font-size: 13px;
}

.stats-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .stats-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

/* /section stats modern */

/* section success modern */
.section-success-modern {
  padding: 150px 0;
  position: relative;
}

.section-success-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.75);
}

.success-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.video-play-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.play-btn-premium {
  display: flex;
  width: 100px;
  height: 100px;
  background: #d4af37;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.play-btn-premium:hover {
  transform: scale(1.1);
  background: #fff;
  color: #d4af37;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border: 4px solid #d4af37;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.success-content-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 60px;
  border-left: 5px solid #d4af37;
  position: relative;
  z-index: 2;
}

.text-light-opacity {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 575px) {
  .success-content-glass {
    padding: 30px;
  }
}

/* success slider */
.success-slider .slick-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex !important;
  align-items: center;
}

.success-slider .slick-dots li {
  margin-right: 15px;
}

.success-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.success-slider .slick-dots li.slick-active button {
  background: #d4af37;
  border-color: #d4af37;
  width: 30px;
  border-radius: 10px;
}

.success-testimonial-item {
  padding: 10px 0;
  outline: none;
}

.testimonial-quote-title {
  color: #d4af37;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: block;
}

/* /section success modern */

/* cta section dynamic enhanced */
.cta-section-dynamic-enhanced {
  padding: 150px 0;
  position: relative;
  background-color: #0d1117;
  background-image: url('../images/backgrounds/cta-commitment.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  overflow: hidden;
}

.cta-section-dynamic-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 42, 108, 0.7), rgba(13, 17, 23, 0.8));
  z-index: -1;
}

.dynamic-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #d4af37;
  top: -150px;
  left: -150px;
  animation: moveOrb 25s infinite alternate ease-in-out;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #1e40af;
  bottom: -100px;
  right: -100px;
  animation: moveOrb 18s infinite alternate-reverse ease-in-out;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseOrb 12s infinite ease-in-out;
}

@keyframes moveOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(150px, 80px) scale(1.15);
  }
}

@keyframes pulseOrb {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.45;
  }
}

.floating-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #d4af37;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
  box-shadow: 0 0 15px #d4af37;
}

.p-1 {
  top: 15%;
  left: 10%;
  animation: floatY 10s infinite ease-in-out;
}

.p-2 {
  top: 65%;
  left: 85%;
  animation: floatY 14s infinite ease-in-out;
}

.p-3 {
  top: 10%;
  left: 75%;
  animation: floatX 12s infinite ease-in-out;
}

.p-4 {
  top: 85%;
  left: 25%;
  animation: floatX 16s infinite ease-in-out;
}

.p-5 {
  top: 40%;
  left: 40%;
  animation: floatDiagonal 15s infinite ease-in-out;
}

.p-6 {
  top: 50%;
  left: 60%;
  animation: floatDiagonal 13s infinite reverse ease-in-out;
}

@keyframes floatY {

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

  50% {
    transform: translateY(-60px);
    opacity: 0.2;
  }
}

@keyframes floatX {

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

  50% {
    transform: translateX(60px);
    opacity: 0.2;
  }
}

@keyframes floatDiagonal {

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

  50% {
    transform: translate(40px, -40px);
    opacity: 0.2;
  }
}

.cta-content-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.cta-content-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.cta-divider {
  width: 100px;
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
  position: relative;
}

.cta-divider::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d4af37;
  background: #0d1117;
  /* Matches the gradient base to avoid star overlap */
  padding: 0 15px;
  font-size: 1.1rem;
}

.container-cta {
  position: relative;
  z-index: 10;
}

.section-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
}

.cta-description {
  max-width: 850px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.font-letter-spacing {
  letter-spacing: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #d4af37;
  text-transform: uppercase;
}

.shadow-glow {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.shadow-glow:hover {
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.7);
  transform: translateY(-5px) scale(1.02);
}

@media (max-width: 991px) {
  .section-title-premium {
    font-size: 42px;
  }

  .cta-section-dynamic-enhanced {
    padding: 100px 0;
  }

  .cta-content-glass {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .section-title-premium {
    font-size: 32px;
  }
}

/* /cta section dynamic enhanced */

/* founder section corporate */
.section-founder-corporate {
  padding: 120px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.founder-portrait-container {
  position: relative;
  padding: 20px;
}

.founder-portrait-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.founder-portrait-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.founder-portrait-container:hover .founder-portrait-frame img {
  transform: scale(1.05);
}

.founder-frame-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.1) 50%);
  z-index: 1;
}

.founder-frame-accent-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-left: 4px solid #d4af37;
  border-bottom: 4px solid #d4af37;
  z-index: 2;
  margin-left: 5px;
  margin-bottom: 5px;
}

.founder-content-wrapper {
  padding-left: 40px;
}

.founder-designation {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: #d4af37;
  text-transform: uppercase;
  display: block;
}

.founder-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 48px;
  color: #0d1117;
}

.founder-philosophy {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

/* healing services section */
.healing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.healing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.healing-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.healing-card:hover .healing-icon-wrapper {
  background: #d4af37;
}

.healing-icon-wrapper i {
  font-size: 30px;
  color: #d4af37;
  transition: all 0.4s ease;
}

.healing-card:hover .healing-icon-wrapper i {
  color: #1a2a6c;
}

.healing-card .card-title {
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.healing-card .card-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-healing-action {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 25px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-healing-action:hover {
  background: #d4af37;
  color: #1a2a6c;
}

.healing-services-bg {
  background: linear-gradient(135deg, #0d1117 0%, #1a2a6c 100%);
  position: relative;
}

.healing-services-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/backgrounds/pattern-bg.png');
  opacity: 0.05;
  pointer-events: none;
}

.founder-philosophy::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 60px;
  color: rgba(212, 175, 55, 0.2);
  font-family: "Playfair Display", serif;
}

.founder-message {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

.founder-signature-block {
  margin-top: 40px;
}

.founder-signature {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 28px;
  color: #1a2a6c;
  display: block;
}

@media (max-width: 991px) {
  .founder-content-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }

  .founder-name {
    font-size: 36px;
  }
}

.founder-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.vision-item {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #d4af37;
  transition: all 0.3s ease;
}

.vision-item:hover {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.vision-icon {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 10px;
  display: block;
}

.vision-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d1117;
  margin-bottom: 5px;
}

.vision-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .founder-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* /founder section corporate */

/* section blog modern */
.section-blog-modern {
  padding: 120px 0;
  background-color: #fff;
}

.blog-card-modern {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}

.blog-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: #d4af37;
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d4af37;
  color: #fff;
  padding: 8px 15px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.blog-body-modern {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-list {
  font-size: 13px;
  color: #64748b;
  font-family: "Inter", sans-serif;
}

.text-gold {
  color: #d4af37;
}

.blog-post-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.4;
  color: #0d1117;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-title-link:hover {
  text-decoration: none;
}

.blog-title-link:hover .blog-post-title {
  color: #1a2a6c;
}

.blog-post-excerpt {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1a2a6c;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #d4af37;
  text-decoration: none;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .blog-post-title {
    font-size: 20px;
  }
}

/* /section blog modern */

/* /section blog modern */

/* footer modern */
.footer-modern {
  background-color: #0d1117;
  color: rgba(255, 255, 255, 0.7);
}

/* premium events section */
.event-card-premium {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.event-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.event-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.event-img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card-premium:hover .event-img-zoom {
  transform: scale(1.1);
}

.event-date-badge-premium {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4af37;
  color: #1a2a6c;
  padding: 10px 15px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  text-align: center;
  line-height: 1.2;
}

.event-date-badge-premium span {
  display: block;
  font-size: 22px;
  margin-bottom: -2px;
}

.event-body-premium {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-location-premium {
  font-size: 13px;
  color: #64748b;
  font-family: "Inter", sans-serif;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.event-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.4;
  color: #0d1117;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  font-weight: 700;
}

.event-title-link:hover {
  text-decoration: none;
}

.event-title-link:hover .event-title-premium {
  color: #d4af37;
}

.event-card-premium::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.event-card-premium:hover::after {
  width: 100%;
}

/* /premium events section */

.footer-newsletter {
  background: linear-gradient(135deg, #1a2a6c 0%, #0d1117 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-white-op {
  color: rgba(255, 255, 255, 0.8);
}

.font-serif {
  font-family: "Playfair Display", serif;
}

.newsletter-form-premium .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  height: 55px;
  padding: 0 25px;
}

.newsletter-form-premium .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
  box-shadow: none;
}

.border-top-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-footer-premium {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff !important;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

.contact-list-footer li {
  font-size: 15px;
  display: flex;
  align-items: center;
}

.footer-links-premium li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links-premium li a:hover {
  color: #d4af37;
  padding-left: 5px;
  text-decoration: none;
}

.social-icons-footer li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons-footer li a:hover {
  background: #d4af37;
  transform: translateY(-5px);
  color: #0d1117;
}

.footer-bottom .text-gold {
  color: #d4af37 !important;
  transition: color 0.3s ease;
}

.footer-bottom .text-gold:hover {
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 991px) {
  .logo-footer-premium {
    font-size: 1.5rem;
  }
}

/* /footer modern */

.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 200px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #ffbc3b;
}

.filter-controls li:hover {
  color: #ffbc3b;
}

/*# sourceMappingURL=maps/style.css.map */
/* Premium Caption Style */
.caption-style {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #d4af37;
  text-align: center;
  margin-top: 15px;
  position: relative;
  display: inline-block;
  padding: 5px 20px;
}

.caption-style::before,
.caption-style::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: #d4af37;
  top: 50%;
}

.caption-style::before {
  left: -50px;
}

.caption-style::after {
  right: -50px;
}

.hover-shadow:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.card {
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

/* X Logo SVG Styling */
.x-logo-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  vertical-align: middle;
  transition: transform 0.3s ease;
  margin-top: -3px;
  /* Precise alignment */
}

.list-inline-item a:hover .x-logo-svg {
  transform: scale(1.1);
}

/* premium courses section */
.course-card-premium {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.course-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.course-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.course-img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card-premium:hover .course-img-zoom {
  transform: scale(1.1);
}

.course-body-premium {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-meta-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #64748b;
}

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

.course-meta-item i {
  color: #d4af37;
  margin-right: 8px;
}

.course-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.4;
  color: #0d1117;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.course-card-premium:hover .course-title-premium {
  color: #1a2a6c;
}

.course-description-premium {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.course-footer-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.course-price-premium {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a2a6c;
}

.btn-course-enroll {
  background: #d4af37;
  color: #1a2a6c;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.btn-course-enroll:hover {
  background: #1a2a6c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
}

.course-rating-gold {
  color: #d4af37;
  font-size: 14px;
}

/* /premium courses section */

/* premium blog section */
.blog-card-premium {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.blog-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-date-badge-premium {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-date-badge-premium .day {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #1a2a6c;
  line-height: 1;
}

.blog-date-badge-premium .month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
}

.blog-body-premium {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-premium {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #64748b;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.blog-meta-item i {
  color: #d4af37;
  margin-right: 8px;
}

.blog-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.4;
  color: #0d1117;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-title-premium {
  color: #d4af37;
}

.blog-description-premium {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-footer-premium {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-blog-read {
  color: #1a2a6c;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-blog-read i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-blog-read:hover {
  color: #d4af37;
  text-decoration: none;
}

.btn-blog-read:hover i {
  transform: translateX(5px);
}

/* Featured Blog Style */
.featured-blog-section {
  padding-bottom: 90px;
}

.featured-blog-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-blog-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s ease;
}

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

.featured-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(13, 17, 23, 0.9));
  z-index: 2;
}

.featured-blog-content {
  position: relative;
  z-index: 3;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

@media (max-width: 767px) {
  .featured-blog-card {
    height: 600px;
  }

  .featured-blog-content {
    padding: 30px;
  }
}

.featured-tag {
  display: inline-block;
  background: #d4af37;
  color: #1a2a6c;
  padding: 5px 15px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.featured-title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .featured-title {
    font-size: 32px;
  }
}

.featured-meta {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-bottom: 30px;
}

/* /premium blog section */

/* Professional Logo Styles */
.navbar-logo {
  max-height: 50px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
  object-fit: contain;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.footer-logo {
  max-height: 70px;
  width: auto;
  transition: all 0.3s ease;
  object-fit: contain;
}

.logo-footer-premium:hover .footer-logo {
  transform: translateY(-5px);
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

@media (max-width: 991px) {
  .navbar-logo {
    max-height: 40px;
  }
}

/* /Professional Logo Styles */

/* Assessment Styles */
.assessment-section {
  padding: 100px 0;
  background-image: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.assessment-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(26, 42, 108, 0.08);
  max-width: 800px;
  margin: 0 auto;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.assessment-progress-wrapper {
  margin-bottom: 40px;
}

.assessment-progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.assessment-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #1a2a6c, #d4af37);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.assessment-step {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.assessment-step.active {
  display: block;
}

.question-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #1a2a6c;
  margin-bottom: 15px;
  font-weight: 700;
}

.question-subtitle {
  font-family: "Inter", sans-serif;
  color: #64748b;
  margin-bottom: 35px;
  font-size: 16px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}

.assessment-option {
  background: #fff;
  border: 2px solid #f1f5f9;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
}

.assessment-option:hover {
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.assessment-option.selected {
  border-color: #1a2a6c;
  background: #f8fafc;
}

.option-icon {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #d4af37;
  font-size: 18px;
}

.option-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #334155;
}

.result-card {
  text-align: center;
}

.result-tag {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.result-title {
  font-size: 48px;
  margin-bottom: 25px;
}

.result-description {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
}

.btn-assessment-action {
  background: #1a2a6c;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-assessment-action:hover {
  background: #d4af37;
  color: #1a2a6c;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* /Assessment Styles */

/* Evaluation Module Styles */
.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.evaluation-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.evaluation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a2a6c, #d4af37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.evaluation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.evaluation-card:hover::before {
  opacity: 1;
}

.evaluation-icon {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a2a6c;
  font-size: 24px;
  transition: all 0.3s ease;
}

.evaluation-card:hover .evaluation-icon {
  background: #1a2a6c;
  color: #fff;
  border-color: #1a2a6c;
}

.evaluation-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1a2a6c;
  margin-bottom: 15px;
  font-weight: 700;
}

.evaluation-desc {
  font-size: 14px;
  color: #64748b;
  font-weight: 700;
  color: #1a2a6c;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.receipt-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #444;
}

.receipt-row.total {
  border-top: 1px dashed #eee;
  padding-top: 15px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1a2a6c;
}

.torn-paper-bottom {
  height: 20px;
  background: #ffffff;
  background-image:
    linear-gradient(135deg, #f8fbff 25%, transparent 25%),
    linear-gradient(225deg, #f8fbff 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: left bottom;
}

.checkout-form-premium {
  background: transparent;
  padding: 40px;
}

.form-group-checkout {
  margin-bottom: 25px;
}

.form-group-checkout label {
  display: block;
  font-weight: 600;
  color: #1a2a6c;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control-checkout {
  border: 1px solid #e2e8f0;
  padding: 12px 15px;
  border-radius: 8px;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}

.form-control-checkout:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  outline: none;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 80px;
  background: #f1f5f9;
}

.btn-pay-premium {
  background: #4a90e2;
  color: #fff;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.btn-pay-premium:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.discount-code-group {
  display: flex;
  margin-top: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 5px;
}

.discount-code-group input {
  border: none;
  flex: 1;
  padding: 10px;
}

.btn-discount-add {
  background: none;
  border: none;
  color: #888;
  font-weight: 700;
  padding: 0 15px;
}

.secure-checkout-badge {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 12px;
}

.secure-checkout-badge i {
  color: #27ae60;
  margin-right: 5px;
}

.payment-logos-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.payment-logos-group img {
  height: 25px;
  filter: grayscale(1);
  opacity: 0.6;
}

/* /Enrollment Checkout Styles */

/* Corporate Wellness Styles */
.corporate-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  height: 100%;
}

.corporate-card:hover {
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(26, 42, 108, 0.08);
  transform: translateY(-5px);
}

.roadmap-step {
  padding: 30px;
  border-left: 3px solid #e2e8f0;
  position: relative;
  margin-bottom: 20px;
}

.roadmap-step::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 35px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 3px solid #1a2a6c;
  border-radius: 50%;
}

.roadmap-step.active {
  border-left-color: #d4af37;
}

.roadmap-step.active::before {
  border-color: #d4af37;
  background: #d4af37;
}

.day-tag {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1a2a6c;
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.metric-pill {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  background: #f0f4f8;
  color: #1a2a6c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-badge {
  background: #1a2a6c;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.knowledge-hub-card {
  border: none;
  background: transparent;
  margin-bottom: 40px;
}

.knowledge-hub-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.knowledge-hub-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.knowledge-hub-card:hover img {
  transform: scale(1.1);
}

.read-time {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* /Corporate Wellness Styles */

/* Premium Utility Classes */
.bg-navy {
  background-color: #1a2a6c !important;
}

.text-gold {
  color: #d4af37 !important;
}

.text-navy {
  color: #1a2a6c !important;
}

.btn-primary-gold {
  background: #d4af37;
  color: #1a2a6c;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-gold:hover {
  background: #1a2a6c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
  text-decoration: none;
}

.hover-shadow-premium {
  transition: all 0.3s ease;
}

.hover-shadow-premium:hover {
  box-shadow: 0 10px 30px rgba(26, 42, 108, 0.1) !important;
  transform: translateY(-3px);
}

/* /Premium Utility Classes */