/********** Template CSS **********/

/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/

.font-work-sans {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*** Button ***/

.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
    
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    background-color:#191919;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    /* background: var(--bs-light); */
    background: #bf9456;
}

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

/*** Hero Header ***/

.hero-header {
    background: url(../img/hero-bg.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1410px) / 2) + .75rem)
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}

/*** Service ***/

@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }
    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }
    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    /* background: var(--bs-white); */
}

.service .service-item .btn-primary:hover {
    /* background: var(--bs-primary); */
    background-color: #c9a46f;
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}

/*** Pricing ***/

.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}

/*** Blog ***/

.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Gallery ***/

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}

/*** Team ***/

.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/*** Testimonial ***/

.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/*** Footer ***/

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    margin-right: 10px;
}

/* my new css */

.navbar{
    min-height:90px;
}

.logo-img{
       width: 166px;
    /* height: 80px; */
    padding-top: 6x;
    padding-bottom: 6px;
    border-radius: 10%;
    /* object-fit: cover; */
    /* border: 3px solid #BF9456; */
}

.logo-title{
    font-size:24px;
    font-weight:700;
    color:#111;
    letter-spacing:1px;
}

.logo-subtitle{
    color:#BF9456;
    font-size:13px;
    font-weight:600;
}

.navbar-nav .nav-link{
    /* color:#111 !important; */
    color: white !important;
    font-size:17px;
    font-weight:600;
    margin:0 14px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#BF9456 !important;
}

.btn-sm-square{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
}
/* hero  */
/* =========================================
   LAVISH HERO SECTION
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    background: #fdfbf8;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* LEFT SIDE */

.hero-content {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #fdfbf8;
    position: relative;
}

.hero-content-inner {
    width: 100%;
    max-width: 700px;
    padding: 55px 50px 55px 8%;
}

/* Welcome */

.hero-welcome {
    color: #bf9456;
    font-family: "Dancing Script", cursive;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 18px;
}

/* Main Heading */

.hero-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 68px;
    line-height: 1.08;
    font-weight: 500;
    color: #171717;
    margin-bottom: 25px;
}

.hero-title span {
    display: block;
    color: #bf9456;
}

/* Description */

.hero-text {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Features */

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #bf9456;
    color: #bf9456;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.hero-feature strong {
    display: block;
    color: #222;
    font-size: 15px;
}

.hero-feature small {
    display: block;
    color: #777;
    font-size: 13px;
}

/* Buttons */



/* =========================================
   RIGHT IMAGE
========================================= */

.hero-image-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    min-height: 650px;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================
   REMOVE TOP SPACING
========================================= */

.hero-section .row {
    margin: 0 !important;
}

.hero-section img {
    margin: 0 !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .hero-content {
        min-height: auto;
    }

    .hero-content-inner {
        padding: 55px 30px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-image-wrapper {
        min-height: 500px;
    }

    .hero-image {
        min-height: 500px;
    }

    .hero-image img {
        min-height: 500px;
    }
}


@media (max-width: 575px) {

    .hero-content-inner {
        padding: 40px 20px;
    }

    .hero-welcome {
        font-size: 28px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-features {
        gap: 18px;
    }

    .hero-image-wrapper,
    .hero-image,
    .hero-image img {
        min-height: 400px;
    }
}

/* button */
/* Contact Us button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 185px;
    height: 61px;

    padding: 0 !important;

    background: transparent;
    color: #bf9456;

    border: 1px solid #bf9456;

    font-size: 19px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #bf9456;
    color: #fff;
}

.contact-btn i {
    font-size: 14px;
}

/* dropdown  */
/* =========================================
   COURSES DROPDOWN
========================================= */
.dropdown-menu {
    min-width: 270px;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    padding: 10px 0;
}

/* Course item */
.dropdown-item {
    padding: 11px 20px;
    color: #222;
    /* color: white; */
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Normal duration */
.course-duration {
    display: block;
    font-size: 12px;
    color: #BF9456;
    margin-top: 2px;
    transition: all 0.3s ease;
}

/* Hover */
.dropdown-item:hover {
    background: #BF9456;
    color: #fff !important;
    padding-left: 25px;
}

/* Hover var duration WHITE */
.dropdown-item:hover .course-duration {
    color: #fff !important;
}


/* =====================================================
   LAVISH COURSES SECTION
===================================================== */

.courses-section {
  background: #ffffff;
}

.courses-main-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}

.courses-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}


/* Course Card */

.lavish-course-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #e3d4bd;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.lavish-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}


/* Image */

.course-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f8f6f2;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lavish-course-card:hover .course-image img {
  transform: scale(1.05);
}


/* Content */

.course-content {
  padding: 25px;
}


/* Top */

.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.course-category {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #bd8b3f;
  text-transform: uppercase;
}

.course-duration {
  font-size: 13px;
  color: #777;
  white-space: nowrap;
}

.course-duration i {
  color: #bd8b3f;
  margin-right: 5px;
}


/* Heading */

.course-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  color: #171717;
  margin-bottom: 12px;
  line-height: 1.25;
}


/* Description */

.course-content > p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}


/* Modules */

.module-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  border-bottom: 1px solid #eadfce;
  padding-bottom: 9px;
}

.course-list {
  padding: 0;
  margin: 0 0 22px 0;
  list-style: none;
}

.course-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.course-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #bd8b3f;
  font-size: 18px;
}


/* Button */

.course-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #bd8b3f;
  color: #222;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.course-btn i {
  color: #bd8b3f;
  transition: transform 0.3s ease;
}

.course-btn:hover {
  background: #bd8b3f;
  color: #ffffff;
}

.course-btn:hover i {
  color: #ffffff;
  transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

  .courses-main-title {
    font-size: 36px;
  }

  .course-image {
    height: 220px;
  }

}


@media (max-width: 767px) {

  .courses-main-title {
    font-size: 30px;
  }

  .courses-subtitle {
    font-size: 14px;
  }

  .course-image {
    height: 240px;
  }

  .course-content {
    padding: 22px;
  }

}


@media (max-width: 575px) {

  .course-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-image {
    height: 220px;
  }

}



/* ==========================================
   THE LAVISH - STUDENT TRANSFORMATION
   GOLD + BLACK THEME
========================================== */

.lavish-student-section {
  position: relative;
  width: 100%;
  padding: 90px 0 80px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(201, 154, 74, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(201, 154, 74, 0.08),
      transparent 35%
    ),
    linear-gradient(
      115deg,
      #111111 0%,
      #191714 50%,
      #25211a 100%
    );
}


/* ==========================================
   BACKGROUND GOLD GLOW
========================================== */

.lavish-student-section::before {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  right: -200px;
  bottom: -300px;

  background: rgba(201, 154, 74, 0.12);

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;
}


/* ==========================================
   CONTAINER
========================================== */

.lavish-container {
  width: 92%;
  max-width: 1400px;

  margin: auto;

  position: relative;
  z-index: 2;
}


/* ==========================================
   HEADING
========================================== */

.lavish-section-heading {
  text-align: center;

  margin-bottom: 38px;
}


.lavish-section-heading span {
  display: block;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 4px;

  color: #c99a4a;

  margin-bottom: 14px;
}


.lavish-section-heading h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  /* font-size: clamp(34px, 4vw, 58px); */
  font-size: 43px;

  line-height: 1.15;

  font-weight: 600;
}


.lavish-section-heading h2 strong {
  color: #d4af67;

  font-weight: 400;
}


.lavish-section-heading p {
  max-width: 900px;

  margin: 14px auto 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;

  line-height: 1.7;
}


/* ==========================================
   SLIDER
========================================== */

.lavish-slider {
  position: relative;

  width: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 500px;
}


/* ==========================================
   IMAGE WRAPPER
========================================== */

.lavish-slides {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  overflow: hidden;
}


/* ==========================================
   INDIVIDUAL IMAGE
========================================== */

.lavish-slide {
  flex-shrink: 0;

  overflow: hidden;

  border-radius: 12px;

  transition:
    transform 0.7s ease,
    opacity 0.7s ease,
    width 0.7s ease,
    height 0.7s ease,
    box-shadow 0.7s ease;

  border: 1px solid rgba(201, 154, 74, 0.25);
}


.lavish-slide img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s ease;
}


/* ==========================================
   SIDE IMAGES
========================================== */

.lavish-side {
  width: 28%;

  height: 310px;

  opacity: 0.72;

  transform: scale(0.92);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45);
}


.lavish-side img {
  filter: brightness(0.72);
}


/* ==========================================
   CENTER IMAGE
========================================== */

.lavish-center {
  width: 38%;

  height: 500px;

  position: relative;

  z-index: 3;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.65);

  border: 2px solid rgba(201, 154, 74, 0.35);
}


.lavish-center img {
  filter: brightness(0.96);
}


/* ==========================================
   IMAGE HOVER
========================================== */

.lavish-slide:hover img {
  transform: scale(1.05);
}


/* ==========================================
   GOLD BORDER GLOW
========================================== */

.lavish-center:hover {
  border-color: #c99a4a;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(201, 154, 74, 0.15);
}


/* ==========================================
   ARROWS
========================================== */

.lavish-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 62px;
  height: 62px;

  border: 1px solid rgba(201, 154, 74, 0.7);

  border-radius: 50%;

  background: #c99a4a;

  color: #111111;

  font-size: 19px;

  cursor: pointer;

  z-index: 10;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;
  justify-content: center;
}


.lavish-arrow:hover {
  background: #d4af67;

  border-color: #d4af67;

  transform:
    translateY(-50%)
    scale(1.08);

  box-shadow:
    0 8px 25px rgba(201, 154, 74, 0.25);
}


.lavish-prev {
  left: 0;
}


.lavish-next {
  right: 0;
}


/* ==========================================
   DOTS
========================================== */

.lavish-dots {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-top: 25px;
}


.lavish-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ffffff;

  opacity: 0.45;

  transition: all 0.3s ease;
}


.lavish-dot.active {
  width: 10px;
  height: 10px;

  background: #c99a4a;

  opacity: 1;

  box-shadow:
    0 0 8px rgba(201, 154, 74, 0.35);
}


/* ==========================================
   RESPONSIVE - TABLET
========================================== */

@media (max-width: 1100px) {

  .lavish-side {
    width: 25%;

    height: 270px;
  }

  .lavish-center {
    width: 42%;

    height: 450px;
  }

}


/* ==========================================
   RESPONSIVE - MOBILE
========================================== */

@media (max-width: 768px) {

  .lavish-student-section {
    padding: 65px 0;
  }


  .lavish-section-heading h2 {
    font-size: 34px;
  }


  .lavish-section-heading p {
    font-size: 15px;
  }


  .lavish-slider {
    min-height: 400px;
  }


  .lavish-slides {
    gap: 0;
  }


  .lavish-side {
    display: none;
  }


  .lavish-center {
    width: 80%;

    height: 400px;
  }


  .lavish-arrow {
    width: 48px;
    height: 48px;

    font-size: 15px;
  }


  .lavish-prev {
    left: 5px;
  }


  .lavish-next {
    right: 5px;
  }

}


/* ==========================================
   RESPONSIVE - SMALL MOBILE
========================================== */

@media (max-width: 480px) {

  .lavish-container {
    width: 94%;
  }


  .lavish-section-heading span {
    font-size: 11px;

    letter-spacing: 2px;
  }


  .lavish-section-heading h2 {
    font-size: 29px;
  }


  .lavish-section-heading p {
    font-size: 14px;
  }


  .lavish-center {
    width: 88%;

    height: 360px;
  }

}


/* new courses */

/* =========================================================
   COURSES SECTION
========================================================= */

/* .courses-section {
    width: 100%;
    padding: 35px 0 60px;
    background: #050505;
    color: #fff;
    overflow: hidden;
} */

.courses-container {
    width: 100%;
    max-width: 1335px;
    margin: auto;
    padding: 0 10px;
}


/* =========================================================
   HEADING
========================================================= */

.courses-heading {
    text-align: center;
    margin-bottom: 24px;
}

.courses-heading > span {
    display: block;

    color: #d89a20;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    font-style: italic;

    line-height: 1;

    margin-bottom: 2px;
}

.courses-heading h2 {
    margin: 0;

    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: 49px;

    font-weight: 700;

    line-height: 1.15;
}


/* =========================================================
   DIVIDER
========================================================= */

.courses-divider {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 13px;
}

.courses-divider span {
    display: block;

    width: 80px;

    height: 1px;

    background: #c58918;
}

.courses-divider i {
    color: #d89a20;

    font-size: 13px;

    font-style: normal;
}


/* =========================================================
   CATEGORY TABS
========================================================= */

.course-tabs {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 18px;

    margin-bottom: 27px;
}

.course-tab {
    height: 102px;

    border: 1px solid #1b1b1b;

    border-radius: 13px;

    background: linear-gradient(
        145deg,
        #111,
        #0c0c0c
    );

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    transition: .3s ease;

    font-family: "Cormorant Garamond", serif;
}

.course-tab i {
    color: #d89a20;

    font-size: 34px;

    margin-bottom: 5px;
}

.course-tab strong {
    font-size: 18px;

    font-weight: 700;
}

.course-tab:hover,
.course-tab.active {
    border-color: #d89a20;
}

.course-tab.active {
    border-width: 2px;
}


/* =========================================================
   COURSE GRID
========================================================= */

.courses-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px 17px;
}


/* =========================================================
   COURSE CARD
========================================================= */

.course-card {
    width: 100%;

    background: #050505;

    border: 1px solid #b87912;

    border-radius: 9px;

    overflow: hidden;
}


/* =========================================================
   COURSE IMAGE
========================================================= */

.course-image {
    width: 100%;

    /* height: 155px; */

    overflow: hidden;
}

.course-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   COURSE INFO
========================================================= */

.course-info {
    /* padding: 0 24px 9px; */
    padding: 40px;
}


/* =========================================================
   COURSE TITLE ROW
========================================================= */

.course-heading-row {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: -6px;

    margin-bottom: 7px;
}


/* =========================================================
   ROUND ICON
========================================================= */

.course-icon {
    width: 60px;

    min-width: 60px;

    height: 60px;

    border: 1px solid #c58918;

    border-radius: 50%;

    background: #050505;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #d89a20;

    font-size: 25px;
}


/* =========================================================
   COURSE TITLE
========================================================= */

.course-heading-row h3 {
    margin: 0 0 4px;

    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.05;
}


/* =========================================================
   DURATION
========================================================= */

.course-heading-row p {
    margin: 0;

    color: #d89a20;

    font-size: 13px;

    font-weight: 500;
}

.course-heading-row p i {
    margin-right: 4px;
}


/* =========================================================
   COURSE LIST
========================================================= */

.course-info ul {
    margin: 0 0 9px;

    padding-left: 21px;
}

.course-info li {
    color: #f4f4f4;

    font-size: 13.5px;

    line-height: 1.55;
}

.course-info li::marker {
    color: #fff;
    font-size: 8px;
}


/* =========================================================
   BUTTONS
========================================================= */

.course-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 38px;
}

.view-course,
.enquire-course {
    height: 34px;

    border-radius: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 11.5px;

    font-weight: 700;

    transition: .3s ease;
}


/* =========================================================
   VIEW COURSE
========================================================= */

.view-course {
    color: #fff;

    background: linear-gradient(
        135deg,
        #d99a20,
        #b8790e
    );

    gap: 15px;
}

.view-course:hover {
    color: #fff;

    background: linear-gradient(
        135deg,
        #e5aa35,
        #c58916
    );
}


/* =========================================================
   ENQUIRE NOW
========================================================= */

.enquire-course {
    color: #fff;

    border: 1px solid #a66d10;

    background: #050505;
}

.enquire-course:hover {
    color: #d89a20;

    border-color: #d89a20;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .courses-container {
        padding: 0 15px;
    }

    .course-tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .courses-heading > span {
        font-size: 28px;
    }

    .courses-heading h2 {
        font-size: 35px;
    }

    .course-tabs {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .course-tab {
        height: 90px;
    }

    .course-tab i {
        font-size: 28px;
    }

    .course-tab strong {
        font-size: 15px;
    }

    .courses-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .course-image {
        height: 210px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .courses-heading h2 {
        font-size: 30px;
    }

    .course-info {
        padding-left: 16px;
        padding-right: 16px;
    }

    .course-buttons {
        gap: 10px;
    }

    .view-course,
    .enquire-course {
        font-size: 10px;
    }

}
/* new best */



    /* =====================================================
   THE LAVISH - ABOUT PAGE
   PREMIUM GOLD / BLACK / CREAM THEME
===================================================== */


/* ================= HERO ================= */

.lavish-about-hero {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


.lavish-about-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.55),
            rgba(0,0,0,.25)
        );
}


.lavish-about-hero-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1100px;

    text-align: center;

    color: #fff;
}


.lavish-about-hero-content > span {
    display: block;

    color: #d6a84f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 18px;
}


.lavish-about-hero-content h1 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1.08;

    font-weight: 500;

    margin-bottom: 20px;
}


.lavish-about-hero-content h1 strong {
    color: #d6a84f;
    font-weight: 500;
}


.lavish-about-hero-content p {
    max-width: 700px;

    margin: auto;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255,255,255,.9);
}


.lavish-about-breadcrumb {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 30px;

    font-size: 14px;

    color: #fff;
}


.lavish-about-breadcrumb i {
    color: #d6a84f;
}



/* ================= INTRO ================= */

.lavish-about-intro {
    padding: 52px 0;

    background: #f8f5ef;
}


.lavish-about-image-wrap {
    position: relative;

    padding: 25px;

    max-width: 570px;

    margin: auto;
}


.lavish-image-frame {
    position: absolute;

    left: 0;
    top: 0;

    width: 90%;
    height: 92%;

    border: 2px solid #d6a84f;

    z-index: 0;
}


.lavish-about-main-image {
    position: relative;

    z-index: 2;

    width: 100%;

    height: 570px;

    object-fit: cover;

    display: block;

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}


.lavish-image-badge {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 4;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #171717;

    color: #fff;

    border: 5px solid #d6a84f;
}


.lavish-image-badge strong {
    font-family: Georgia, serif;

    font-size: 42px;

    line-height: 1;

    color: #d6a84f;
}


.lavish-image-badge span {
    font-size: 12px;

    letter-spacing: 1px;

    margin-top: 8px;
}


.lavish-small-title {
    display: inline-block;

    color: #b48732;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 14px;
}


.lavish-about-content h2,
.lavish-vision-section h2,
.lavish-training-section h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.2;

    font-weight: 500;

    color: #1b1b1b;

    margin-bottom: 22px;
}


.lavish-about-content h2 strong,
.lavish-vision-section h2 strong,
.lavish-training-section h2 strong {

    color: #b48732;

    font-weight: 500;
}


.lavish-about-content > p,
.lavish-vision-section > p,
.lavish-training-section > p {

    color: #555;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 18px;
}



/* ================= FEATURES ================= */

.lavish-about-features {
    margin-top: 30px;
}


.lavish-feature {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 16px 0;

    border-bottom: 1px solid #e4ded3;
}


.lavish-feature:last-child {
    border-bottom: none;
}


.lavish-feature-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1a1a1a;

    color: #d6a84f;

    border-radius: 50%;
}


.lavish-feature h5 {

    margin: 0 0 5px;

    color: #222;

    font-size: 17px;
}


.lavish-feature p {

    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.5;
}



/* ================= VISION ================= */

.lavish-vision-section {

    padding: 110px 0;

    /* background: #171717;

    color: #fff; */
}


.lavish-vision-section h2 {
    /* color: #fff; */
}


.lavish-vision-section > .container p {
    /* color: rgba(255,255,255,.72); */
}


.lavish-vision-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;
}


.lavish-vision-points div {

    /* color: #eee; */

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.lavish-vision-points i {

    color: #d6a84f;
}


.lavish-vision-image {

    position: relative;

    padding: 20px;
}


.lavish-vision-image::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid #d6a84f;

}


.lavish-vision-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 570px;

    object-fit: cover;

    display: block;
}


.lavish-vision-card {

    position: absolute;

    z-index: 4;

    bottom: 0;

    left: 0;

    background: #d6a84f;

    color: #171717;

    padding: 25px 30px;

    max-width: 300px;
}


.lavish-vision-card span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.lavish-vision-card h4 {

    font-family: Georgia, serif;

    font-size: 23px;

    margin: 8px 0 0;
}



/* ================= OFFER ================= */

.lavish-offer-section {

    padding: 50px 0;

    background: #f8f5ef;
}


.lavish-heading {

    max-width: 850px;

    margin: 0 auto 50px;
}


.lavish-heading > span {

    display: block;

    color: #b48732;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;
}


.lavish-heading h2 {

    font-family: Georgia, serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 500;

    color: #1c1c1c;

    line-height: 1.2;
}


.lavish-heading h2 strong {

    color: #b48732;

    font-weight: 500;
}


.lavish-heading p {

    color: #666;

    line-height: 1.7;

    margin-top: 15px;
}


.lavish-offer-card {

    background: #fff;

    height: 100%;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition: .4s ease;
}


.lavish-offer-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.15);
}


.lavish-card-image {

    height: 280px;

    overflow: hidden;
}


.lavish-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}


.lavish-offer-card:hover
.lavish-card-image img {

    transform: scale(1.07);
}


.lavish-card-content {

    position: relative;

    padding: 38px 30px 30px;
}


.lavish-card-icon {

    position: absolute;

    top: -25px;

    left: 30px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1b1b1b;

    color: #d6a84f;

    border: 3px solid #fff;

    border-radius: 50%;
}


.lavish-card-content h4 {

    font-family: Georgia, serif;

    font-size: 24px;

    color: #222;

    margin-bottom: 12px;
}


.lavish-card-content p {

    color: #777;

    line-height: 1.7;

    margin: 0;
}



/* ================= TRAINING ================= */

.lavish-training-section {

    padding: 30px 0;

    background: #fff;
}


.lavish-training-image {

    position: relative;

    padding: 18px;
}


.lavish-training-image::after {

    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 85%;
    height: 90%;

    border: 2px solid #d6a84f;

    z-index: 0;
}


.lavish-training-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 570px;

    object-fit: cover;
}


.lavish-course-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin: 30px 0;
}


.lavish-course-grid div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px;

    background: #f8f5ef;

    border-left: 3px solid #d6a84f;
}


.lavish-course-grid strong {

    color: #d6a84f;

    font-family: Georgia, serif;

    font-size: 20px;
}


.lavish-course-grid span {

    color: #333;

    font-size: 14px;

    font-weight: 600;
}


.lavish-gold-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 28px;

    background: #1b1b1b;

    color: #fff !important;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: .3s ease;
}


.lavish-gold-btn:hover {

    background: #d6a84f;

    color: #171717 !important;
}



/* ================= WHY ================= */

.lavish-why-section {

    padding: 100px 0;

    background: #171717;
}


.lavish-why-section .lavish-heading h2 {

    color: #fff;
}


.lavish-why-card {

    text-align: center;

    padding: 35px 22px;

    height: 100%;

    border: 1px solid rgba(214,168,79,.3);

    background: rgba(255,255,255,.03);

    transition: .35s ease;
}


.lavish-why-card:hover {

    background: #d6a84f;

    transform: translateY(-8px);
}


.lavish-why-card i {

    font-size: 32px;

    color: #d6a84f;

    margin-bottom: 20px;
}


.lavish-why-card:hover i {

    color: #171717;
}


.lavish-why-card h4 {

    color: #fff;

    font-family: Georgia, serif;

    font-size: 22px;

    margin-bottom: 12px;
}


.lavish-why-card p {

    color: rgba(255,255,255,.65);

    line-height: 1.6;

    font-size: 14px;
}


.lavish-why-card:hover h4,
.lavish-why-card:hover p {

    color: #171717;
}



/* ================= CTA ================= */

.lavish-about-cta {

    position: relative;

    padding: 120px 0;

    background-image:
        url("https://images.unsplash.com/photo-1599351431202-1e0f0d1f0b0d?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;

    background-position: center;
}


.lavish-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.9),
            rgba(0,0,0,.6)
        );
}


.lavish-cta-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    color: #fff;
}


.lavish-cta-content > span {

    color: #d6a84f;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


.lavish-cta-content h2 {

    font-family: Georgia, serif;

    font-size: clamp(38px, 5vw, 60px);

    font-weight: 500;

    line-height: 1.15;

    margin: 15px 0;
}


.lavish-cta-content h2 strong {

    color: #d6a84f;

    font-weight: 500;
}


.lavish-cta-content p {

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 28px;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .lavish-about-hero {
        min-height: 450px;
    }

    .lavish-about-intro,
    .lavish-vision-section,
    .lavish-offer-section,
    .lavish-training-section {
        padding: 80px 0;
    }

    .lavish-about-main-image,
    .lavish-vision-image img,
    .lavish-training-image img {
        height: 480px;
    }

}


@media (max-width: 767px) {

    .lavish-about-hero {
        min-height: 430px;
    }

    .lavish-about-hero-content h1 {
        font-size: 42px;
    }

    .lavish-about-main-image,
    .lavish-vision-image img,
    .lavish-training-image img {
        height: 400px;
    }

    .lavish-vision-points,
    .lavish-course-grid {
        grid-template-columns: 1fr;
    }

    .lavish-image-badge {
        width: 120px;
        height: 120px;
    }

    .lavish-image-badge strong {
        font-size: 32px;
    }

}


@media (max-width: 480px) {

    .lavish-about-hero-content h1 {
        font-size: 34px;
    }

    .lavish-about-hero-content p {
        font-size: 15px;
    }

    .lavish-about-main-image,
    .lavish-vision-image img,
    .lavish-training-image img {
        height: 340px;
    }

    .lavish-about-image-wrap {
        padding: 15px;
    }

}


    /* ==========================================
   HAIR DIPLOMA PAGE
========================================== */

.hair-diploma-page {
  background: #fff;
  color: #555;
}


/* ================= BANNER ================= */

.hair-diploma-banner {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;
}


.hair-diploma-banner img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


.hair-diploma-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding-left: 8%;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .65),
      rgba(0, 0, 0, .30),
      transparent
    );

  color: #fff;
}


.hair-diploma-overlay span {
  font-size: 13px;

  letter-spacing: 3px;

  font-weight: 600;

  margin-bottom: 15px;
}


.hair-diploma-overlay h1 {
  font-family: Georgia, serif;

  font-size: clamp(45px, 6vw, 75px);

  margin: 0 0 10px;

  color: #fff;
}


.hair-diploma-overlay p {
  font-size: 19px;

  margin-bottom: 22px;
}


.hair-duration {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  width: fit-content;

  padding: 11px 20px;

  background: rgba(255,255,255,.95);

  color: #444;

  border-left: 4px solid #b88a3b;
}


.hair-duration i {
  color: #b88a3b;
}


/* ================= HEADING ================= */

.hair-course-heading {
  max-width: 850px;

  margin: 0 auto 45px;

  text-align: center;
}


.hair-course-heading span {
  color: #b88a3b;

  font-size: 13px;

  letter-spacing: 3px;

  font-weight: 600;
}


.hair-course-heading h2 {
  font-family: Georgia, serif;

  font-size: 44px;

  color: #29251f;

  margin: 12px 0;
}


.hair-course-heading h2 strong {
  color: #b88a3b;
}


.hair-course-heading p {
  font-size: 16px;

  line-height: 1.8;

  color: #666;
}


/* ================= MODULE ================= */

.hair-module {
  display: flex;

  gap: 25px;

  margin-bottom: 22px;

  padding: 30px;

  background: #faf7f2;

  border: 1px solid #eee3d3;

  transition: .3s ease;
}


.hair-module:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


.hair-module-number {
  min-width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #b88a3b;

  color: #fff;

  font-family: Georgia, serif;

  font-size: 19px;
}


.hair-module-content {
  flex: 1;
}


.hair-module-content h3 {
  margin: 0 0 18px;

  font-family: Georgia, serif;

  font-size: 26px;

  color: #29251f;
}


.hair-module-content ul {
  margin: 0;

  padding-left: 20px;

  columns: 2;
}


.hair-module-content li {
  margin-bottom: 8px;

  font-size: 15px;

  line-height: 1.5;

  color: #5f5a53;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hair-diploma-banner {
    height: 420px;
  }

  .hair-diploma-overlay {
    padding: 30px;
  }

  .hair-diploma-overlay h1 {
    font-size: 45px;
  }

  .hair-course-heading h2 {
    font-size: 35px;
  }

  .hair-module {
    padding: 22px;

    gap: 15px;
  }

  .hair-module-content ul {
    columns: 1;
  }

}


@media (max-width: 480px) {

  .hair-diploma-banner {
    height: 380px;
  }

  .hair-diploma-overlay h1 {
    font-size: 38px;
  }

  .hair-diploma-overlay span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hair-module {
    display: block;
  }

  .hair-module-number {
    margin-bottom: 18px;
  }

}




/* new cssssssssssssssssssssss */

/* =========================================================
   THE LAVISH - LUXURY BEAUTY FOUNDER
   IVORY + BLACK + CHAMPAGNE GOLD + NUDE
========================================================= */

.lavish-founder {
    --lf-black: #151313;
    --lf-gold: #c7a15a;
    --lf-light-gold: #e4c98c;
    --lf-cream: #fbf8f2;
    --lf-white: #ffffff;
    --lf-nude: #eee2d8;
    --lf-text: #55504a;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(228,201,140,.18),
            transparent 23%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(238,226,216,.5),
            transparent 25%
        ),
        var(--lf-cream);

    padding: 115px 0 100px;

    color: var(--lf-black);
}


/* =========================================================
   BACKGROUND
========================================================= */

.lf-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    border: 1px solid rgba(199,161,90,.20);
}


.lf-glow-one {
    width: 600px;
    height: 600px;
    left: 492px;
    top: 336px;
}


.lf-glow-two {
    width: 500px;
    height: 500px;

    right: -300px;
    bottom: 100px;
}


.lf-container {
    width: 90%;
    max-width: 1380px;

    margin: auto;

    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.lf-header {
    text-align: center;

    max-width: 780px;

    margin: 0 auto 80px;
}


.lf-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    color: var(--lf-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 20px;
}


.lf-eyebrow span {
    width: 45px;
    height: 1px;

    background: var(--lf-gold);
}


.lf-header h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 6vw, 55px);

    line-height: .95;

    font-weight: 400;
}


.lf-header h2 strong {
    display: block;

    color: var(--lf-gold);

    font-weight: 400;

    font-style: italic;

    margin-top: 8px;
}


.lf-header p {
    max-width: 570px;

    margin: 25px auto 0;

    color: #77716b;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PROFILE AREA
========================================================= */

.lf-profile {
    min-height: 650px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 100px;
}


/* Vertical Brand */

.lf-vertical-text {
    position: absolute;

    left: 4%;

    top: 50%;

    transform: translateY(-50%) rotate(-90deg);

    transform-origin: center;

    font-size: 10px;

    letter-spacing: 8px;

    color: rgba(21,19,19,.25);
}


/* =========================================================
   PORTRAIT
========================================================= */

.lf-portrait-wrap {
    position: relative;

    width: 520px;
    height: 620px;

    display: flex;

    justify-content: center;
    align-items: center;
}


/* Large elegant rings */

.lf-portrait-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid var(--lf-gold);

    pointer-events: none;
}


.ring-one {
    width: 550px;
    height: 550px;

    border-right-color: transparent;

    animation: lfRotate 18s linear infinite;
}


.ring-two {
    width: 620px;
    height: 620px;

    border-left-color: transparent;

    opacity: .35;

    animation: lfRotateReverse 25s linear infinite;
}


@keyframes lfRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes lfRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* Portrait */

.lf-portrait {
    position: relative;

    width: 410px;
    height: 535px;

    overflow: hidden;

    background: var(--lf-black);

    border-radius: 205px 205px 15px 15px;

    padding: 9px;

    box-shadow:
        0 30px 80px rgba(21,19,19,.20);

    z-index: 3;

    animation: lfPortraitFloat 5s ease-in-out infinite;
}


@keyframes lfPortraitFloat {

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

    50% {
        transform: translateY(-9px);
    }

}


.lf-portrait img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 200px 200px 8px 8px;

    transition: transform 1s ease;
}


.lf-portrait:hover img {
    transform: scale(1.05);
}


/* Image overlay */

.lf-image-overlay {
    position: absolute;

    inset: 9px;

    border-radius: 195px 195px 5px 5px;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(21,19,19,.30)
        );

    pointer-events: none;
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.lf-experience {
    position: absolute;

    z-index: 8;

    right: 5px;
    bottom: 35px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: var(--lf-gold);

    border: 8px solid var(--lf-cream);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--lf-black);

    box-shadow:
        0 15px 40px rgba(21,19,19,.18);

    animation: lfBadge 4s ease-in-out infinite;
}


@keyframes lfBadge {

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

    50% {
        transform: translateY(-10px) rotate(3deg);
    }

}


.lf-experience-star {
    font-size: 12px;

    margin-bottom: 2px;
}


.lf-experience-number {
    font-family: Georgia, serif;

    font-size: 42px;

    line-height: 1;

    font-weight: bold;
}


.lf-experience-label {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.5;
}


/* Floating dots */

.lf-floating-dot {
    position: absolute;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: var(--lf-gold);

    z-index: 7;

    animation: lfDot 3s ease-in-out infinite;
}


.dot-one {
    left: 20px;
    top: 130px;
}


.dot-two {
    right: 20px;
    top: 210px;

    width: 9px;
    height: 9px;

    animation-delay: 1s;
}


@keyframes lfDot {

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

    50% {
        transform: translateY(-15px);
        opacity: 1;
    }

}


/* =========================================================
   NAME PANEL
========================================================= */

.lf-name-panel {
    position: absolute;

    right: 3%;

    top: 50%;

    transform: translateY(-50%);

    width: 440px;

    background: rgba(255,255,255,.92);

    padding: 50px;

    border: 1px solid rgba(21,19,19,.09);

    box-shadow:
        0 25px 70px rgba(21,19,19,.08);

    z-index: 5;
}


.lf-name-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-family: Georgia, serif;

    color: rgba(199,161,90,.35);

    font-size: 50px;

    font-style: italic;
}


.lf-name-kicker {
    color: var(--lf-gold);

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 700;

    margin-bottom: 15px;
}


.lf-name-panel h3 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 43px;

    line-height: 1.05;

    font-weight: 400;
}


.lf-name-panel h3 em {
    display: block;

    color: var(--lf-gold);

    font-style: italic;

    font-weight: 400;
}


.lf-gold-line {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 22px 0;
}


.lf-gold-line span {
    width: 35px;
    height: 1px;

    background: var(--lf-gold);
}


.lf-gold-line i {
    color: var(--lf-gold);

    font-style: normal;

    font-size: 12px;
}


.lf-institute {
    color: var(--lf-black);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.6;

    margin-bottom: 12px;
}


.lf-description {
    color: #777;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* Mini Credentials */

.lf-mini-credentials {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #e8e2d9;

    padding-top: 20px;

    gap: 15px;
}


.lf-mini-credentials div {
    text-align: center;

    border-right: 1px solid #e8e2d9;
}


.lf-mini-credentials div:last-child {
    border: none;
}


.lf-mini-credentials strong {
    display: block;

    color: var(--lf-gold);

    font-family: Georgia, serif;

    font-size: 21px;
}


.lf-mini-credentials span {
    display: block;

    color: #888;

    font-size: 8px;

    letter-spacing: 1px;

    margin-top: 4px;
}


/* =========================================================
   INFORMATION CARDS
========================================================= */

.lf-information {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;

    margin-bottom: 25px;
}


.lf-info-card {
    position: relative;

    background: #fff;

    padding: 40px;

    border: 1px solid rgba(21,19,19,.09);

    overflow: hidden;

    transition: .5s ease;
}


.lf-info-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    right: -80px;
    top: -80px;

    background: var(--lf-nude);

    transition: .5s ease;
}


.lf-info-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(21,19,19,.09);
}


.lf-info-card:hover::before {
    transform: scale(1.3);
}


.lf-card-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.lf-card-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--lf-black);

    color: var(--lf-gold);

    font-size: 18px;
}


.lf-card-top > span {
    font-family: Georgia, serif;

    font-size: 40px;

    color: rgba(199,161,90,.25);

    font-style: italic;
}


.lf-card-title {
    position: relative;

    margin-bottom: 25px;
}


.lf-card-title small {
    color: var(--lf-gold);

    font-size: 8px;

    letter-spacing: 3px;

    font-weight: 700;
}


.lf-card-title h3 {
    margin: 7px 0 0;

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 400;

    line-height: 1.1;
}


.lf-card-title h3 em {
    color: var(--lf-gold);

    font-style: italic;
}


/* Qualification list */

.lf-list {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    column-gap: 25px;
}


.lf-list > div {
    display: flex;

    gap: 10px;

    padding: 10px 0;

    border-bottom: 1px solid #eee9e2;
}


.lf-list span {
    color: var(--lf-gold);

    font-family: Georgia, serif;

    font-size: 10px;

    padding-top: 3px;
}


.lf-list p {
    margin: 0;

    color: #666;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   EXPERTISE GRID
========================================================= */

.lf-expertise-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}


.lf-expertise-item {
    min-height: 80px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    background: #faf8f4;

    border: 1px solid transparent;

    transition: .4s ease;
}


.lf-expertise-item:hover {
    background: #fff;

    border-color: rgba(199,161,90,.35);

    transform: translateY(-4px);
}


.lf-expertise-item i {
    min-width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--lf-black);

    color: var(--lf-gold);

    font-size: 12px;
}


.lf-expertise-item span {
    color: #555;

    font-size: 11px;

    line-height: 1.45;
}


/* =========================================================
   JOURNEY
========================================================= */

.lf-journey {
    margin-top: 25px;

    padding: 45px;

    background: var(--lf-black);

    color: #fff;

    position: relative;

    overflow: hidden;
}


.lf-journey::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border: 1px solid rgba(199,161,90,.18);

    border-radius: 50%;

    right: -200px;
    top: -230px;
}


.lf-journey-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 35px;
}


.lf-journey-number {
    color: var(--lf-gold);

    font-family: Georgia, serif;

    font-size: 42px;

    font-style: italic;
}


.lf-journey-heading small {
    color: var(--lf-gold);

    font-size: 8px;

    letter-spacing: 3px;
}


.lf-journey-heading h3 {
    margin: 5px 0 0;

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 400;
}


.lf-journey-heading h3 em {
    color: var(--lf-gold);

    font-style: italic;
}


.lf-journey-items {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.lf-journey-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 15px 15px 0;

    border-right: 1px solid rgba(255,255,255,.12);
}


.lf-journey-item:last-child {
    border-right: none;
}


.lf-journey-icon {
    min-width: 45px;
    height: 45px;

    border: 1px solid rgba(199,161,90,.6);

    color: var(--lf-gold);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;
}


.lf-journey-item strong {
    display: block;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 14px;

    margin-bottom: 5px;
}


.lf-journey-item span {
    color: #aaa;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   VALUES
========================================================= */

.lf-values {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 25px;

    border: 1px solid rgba(21,19,19,.10);
}


.lf-value {
    position: relative;

    padding: 35px;

    text-align: center;

    background: #fff;

    border-right: 1px solid rgba(21,19,19,.10);

    transition: .5s ease;
}


.lf-value:last-child {
    border-right: none;
}


.lf-value:hover {
    background: var(--lf-nude);

    transform: translateY(-5px);
}


.lf-value-main {
    background: var(--lf-gold);

    color: var(--lf-black);
}


.lf-value-main:hover {
    background: var(--lf-light-gold);
}


.lf-value > span {
    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 10px;

    opacity: .5;
}


.lf-value i {
    font-size: 25px;

    color: var(--lf-gold);

    margin-bottom: 12px;
}


.lf-value-main i {
    color: var(--lf-black);
}


.lf-value h4 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 400;
}


.lf-value p {
    color: #888;

    font-size: 11px;

    margin: 5px 0 0;
}


.lf-value-main p {
    color: rgba(21,19,19,.65);
}


/* =========================================================
   SIGNATURE
========================================================= */

.lf-signature {
    text-align: center;

    margin-top: 65px;
}


.lf-signature-mark {
    color: var(--lf-gold);

    font-size: 17px;

    margin-bottom: 15px;
}


.lf-signature p {
    max-width: 650px;

    margin: auto;

    color: #777;

    font-family: Georgia, serif;

    font-size: 18px;

    font-style: italic;

    line-height: 1.7;
}


.lf-signature-name {
    margin-top: 22px;

    font-family: Georgia, serif;

    font-size: 23px;

    color: var(--lf-black);
}


.lf-signature > span {
    display: block;

    color: var(--lf-gold);

    font-size: 9px;

    letter-spacing: 3px;

    margin-top: 5px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .lf-name-panel {
        right: 0;

        width: 390px;

        padding: 40px;
    }

    .lf-portrait {
        width: 380px;
        height: 500px;
    }

    .lf-portrait-wrap {
        width: 500px;
    }

}


@media (max-width: 991px) {

    .lavish-founder {
        padding: 80px 0;
    }

    .lf-profile {
        display: block;

        min-height: auto;
    }

    .lf-portrait-wrap {
        margin: auto;

        width: 500px;
        max-width: 100%;
    }

    .lf-name-panel {
        position: relative;

        right: auto;
        /* top: auto; */

        transform: none;

        width: 80%;

        margin: -60px auto 0;
    }

    .lf-information {
        grid-template-columns: 1fr;
    }

    .lf-journey-items {
        grid-template-columns: 1fr 1fr;
    }

    .lf-journey-item:nth-child(2) {
        border-right: none;
    }

}


@media (max-width: 650px) {

    .lavish-founder {
        padding: 65px 0;
    }

    .lf-container {
        width: 92%;
    }

    .lf-header {
        margin-bottom: 45px;
    }

    .lf-header h2 {
        font-size: 44px;
    }

    .lf-eyebrow {
        letter-spacing: 3px;
        font-size: 8px;
    }

    .lf-profile {
        margin-bottom: 60px;
    }

    .lf-portrait-wrap {
        height: 500px;
    }

    .lf-portrait {
        width: 290px;
        height: 400px;
    }

    .ring-one {
        width: 330px;
        height: 330px;
    }

    .ring-two {
        width: 380px;
        height: 380px;
    }

    .lf-experience {
        width: 120px;
        height: 120px;

        right: 0;
        bottom: 30px;
    }

    .lf-experience-number {
        font-size: 32px;
    }

    .lf-name-panel {
        width: 92%;

        padding: 32px 25px;

        margin-top: -55px;
    }

    .lf-name-panel h3 {
        font-size: 34px;
    }

    .lf-mini-credentials {
        gap: 5px;
    }

    .lf-mini-credentials strong {
        font-size: 17px;
    }

    .lf-mini-credentials span {
        font-size: 7px;
    }

    .lf-information {
        gap: 18px;
    }

    .lf-info-card {
        padding: 28px 22px;
    }

    .lf-list {
        grid-template-columns: 1fr;
    }

    .lf-expertise-grid {
        grid-template-columns: 1fr;
    }

    .lf-journey {
        padding: 28px 20px;
    }

    .lf-journey-items {
        grid-template-columns: 1fr;
    }

    .lf-journey-item {
        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,.12);
    }

    .lf-values {
        grid-template-columns: 1fr;
    }

    .lf-value {
        border-right: none;

        border-bottom:
            1px solid rgba(21,19,19,.10);
    }

    .lf-value:last-child {
        border-bottom: none;
    }

    .lf-vertical-text {
        display: none;
    }

}



/* hero css new  */

/* =====================================================
   THE LAVISH - LUXURY BLACK GOLD HERO
===================================================== */
/* =========================================================
   THE LAVISH
   LUXURY BLACK + CHAMPAGNE GOLD HERO
========================================================= */

.lavish-luxury-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #050505;
}


/* =========================================================
   CAROUSEL
========================================================= */

.lavish-carousel {
    width: 100%;
}

.lavish-carousel .owl-stage-outer {
    overflow: hidden;
}

.lavish-carousel .owl-stage {
    display: flex;
}

.lavish-carousel .owl-item {
    overflow: hidden;
}


/* =========================================================
   FULL BANNER
========================================================= */

.lavish-hero-slide {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #050505;
}


/* =========================================================
   FULL IMAGE
========================================================= */

.lavish-hero-image {
    position: absolute !important;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover;

    object-position: center;

    display: block;

    transform: scale(1.01);

    will-change: transform;
}


/* =========================================================
   PREMIUM BLACK GRADIENT
========================================================= */

.lavish-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.94) 0%,
            rgba(0,0,0,0.84) 24%,
            rgba(0,0,0,0.60) 46%,
            rgba(0,0,0,0.25) 72%,
            rgba(0,0,0,0.18) 100%
        );

    pointer-events: none;
}


/* =========================================================
   SECONDARY DARK VIGNETTE
========================================================= */

.lavish-hero-slide::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 78% 48%,
            transparent 0%,
            rgba(0,0,0,0.10) 38%,
            rgba(0,0,0,0.38) 100%
        );
}


/* =========================================================
   GOLD MOVING LIGHT
========================================================= */

.lavish-gold-glow {

    position: absolute;

    z-index: 3;

    width: 650px;

    height: 650px;

    right: -220px;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(218,176,76,0.20) 0%,
            rgba(218,176,76,0.10) 28%,
            rgba(218,176,76,0.03) 50%,
            transparent 72%
        );

    filter: blur(2px);

    pointer-events: none;

    animation: lavishGoldMove 8s ease-in-out infinite alternate;
}


@keyframes lavishGoldMove {

    0% {
        transform:
            translateY(-50%)
            translateX(0)
            scale(1);
    }

    100% {
        transform:
            translateY(-50%)
            translateX(-70px)
            scale(1.12);
    }

}


/* =========================================================
   CONTENT WRAPPER
========================================================= */

.lavish-slide-content {

    position: absolute;

    z-index: 6;

    left: 7.5%;

    top: 38%;

    transform: translateY(-50%);

    width: 900px;

    max-width: 68%;

    color: #ffffff;

}


/* =========================================================
   SMALL GOLD TITLE
========================================================= */

.lavish-mini-title {

    display: flex;

    align-items: center;

    gap: 13px;

    color: #d8ad55;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;

    opacity: 0;
}


/* Gold line */

.lavish-mini-title span {

    width: 42px;

    height: 1px;

    background: #d8ad55;

    display: block;

    position: relative;

    overflow: hidden;
}


/* Moving shine */

.lavish-mini-title span::after {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: #ffffff;

    animation: goldLineShine 2.5s ease-in-out infinite;
}


@keyframes goldLineShine {

    0% {
        left: -100%;
    }

    45%,
    100% {
        left: 100%;
    }

}


/* =========================================================
   MAIN HEADING
========================================================= */

.lavish-slide-content h1 {

    margin: 0 0 22px;

    padding: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(45px, 4.25vw, 68px);

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1.5px;

    white-space: nowrap;

    opacity: 0;
}


/* GOLD WORD */

.lavish-slide-content h1 span {

    display: inline;

    color: #d7ad52;

    font-style: italic;

    font-weight: 500;

    position: relative;
}


/* Gold underline */

.lavish-slide-content h1 span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 2px;

    background: #d7ad52;

    transition: width 1s ease;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.lavish-slide-content p {

    max-width: 650px;

    margin: 0 0 25px;

    color: rgba(255,255,255,0.82);

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.75;

    opacity: 0;
}


/* =========================================================
   MINI FEATURES
========================================================= */

.lavish-mini-features {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-bottom: 30px;

    opacity: 0;
}


.lavish-mini-features > div {

    display: flex;

    align-items: center;

    gap: 11px;

    color: rgba(255,255,255,0.92);

    font-size: 14px;

    font-weight: 500;

    white-space: nowrap;
}


/* Icon */

.lavish-mini-features i {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(216,173,82,0.75);

    color: #d9ae55;

    background: rgba(0,0,0,0.30);

    box-shadow:
        0 0 0 5px rgba(216,173,82,0.04),
        0 0 20px rgba(216,173,82,0.12);

    transition: all 0.35s ease;
}


.lavish-mini-features > div:hover i {

    background: #d7ad52;

    color: #050505;

    transform: rotate(10deg) scale(1.08);

    box-shadow:
        0 0 0 7px rgba(216,173,82,0.06),
        0 0 30px rgba(216,173,82,0.30);
}


/* =========================================================
   BUTTON AREA
========================================================= */

.lavish-slide-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    opacity: 0;
}


/* =========================================================
   GOLD BUTTON
========================================================= */

.lavish-gold-btn {

    position: relative;

    overflow: hidden;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-width: 175px;

    padding: 14px 25px;

    color: #080808 !important;

    background:
        linear-gradient(
            135deg,
            #b9862f,
            #e1bd69,
            #c99638
        );

    border: 1px solid #e3c16d;

    border-radius: 4px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.3px;

    box-shadow:
        0 10px 30px rgba(214,171,76,0.20);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Shine */

.lavish-gold-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    transform: skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.45),
            transparent
        );

    transition: left 0.7s ease;
}


.lavish-gold-btn:hover::before {

    left: 130%;
}


.lavish-gold-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 38px rgba(214,171,76,0.35);

    color: #000 !important;
}


.lavish-gold-btn i {

    transition: transform 0.3s ease;
}


.lavish-gold-btn:hover i {

    transform: translateX(5px);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.lavish-outline-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 155px;

    padding: 14px 25px;

    color: #ffffff !important;

    background:
        rgba(0,0,0,0.32);

    border: 1px solid rgba(224,187,101,0.75);

    border-radius: 4px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 600;

    backdrop-filter: blur(8px);

    transition:
        all 0.35s ease;
}


.lavish-outline-btn:hover {

    background: #d7ad52;

    color: #080808 !important;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(214,171,76,0.25);
}


.lavish-outline-btn i {

    transition:
        transform 0.3s ease;
}


.lavish-outline-btn:hover i {

    transform: rotate(12deg);
}


/* =========================================================
   BOTTOM GLASS STATS
========================================================= */

.lavish-bottom-badge {

    position: absolute;

    z-index: 7;

    left: 7.5%;

    bottom: 30px;

    display: flex;

    align-items: stretch;

    background:
        rgba(8,8,8,0.72);

    border:
        1px solid rgba(215,173,82,0.38);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 45px rgba(0,0,0,0.35);

    opacity: 0;
}


/* Individual */

.lavish-bottom-badge > div {

    min-width: 160px;

    padding: 13px 20px;

    border-right:
        1px solid rgba(215,173,82,0.22);

}


.lavish-bottom-badge > div:last-child {

    border-right: none;
}


.lavish-bottom-badge strong {

    display: block;

    margin-bottom: 3px;

    color: #dfb55b;

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    font-weight: 600;
}


.lavish-bottom-badge span {

    color:
        rgba(255,255,255,0.65);

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   OWL NAVIGATION
========================================================= */

.lavish-carousel .owl-nav {

    position: absolute;

    right: 45px;

    bottom: 32px;

    z-index: 12;

    display: flex;

    gap: 10px;
}


.lavish-carousel .owl-nav button {

    width: 50px !important;

    height: 50px !important;

    margin: 0 !important;

    display: flex !important;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(224,187,101,0.75) !important;

    border-radius: 3px !important;

    background:
        rgba(8,8,8,0.65) !important;

    color:
        #d9ae55 !important;

    font-size: 22px !important;

    backdrop-filter: blur(8px);

    transition:
        all 0.35s ease;
}


.lavish-carousel .owl-nav button:hover {

    background:
        #d7ad52 !important;

    color:
        #080808 !important;

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 25px rgba(215,173,82,0.25);
}


/* =========================================================
   DOTS
========================================================= */

.lavish-carousel .owl-dots {

    position: absolute;

    right: 52px;

    bottom: 95px;

    z-index: 12;

    display: flex;

    gap: 6px;
}


.lavish-carousel .owl-dot {

    margin: 0 !important;
}


.lavish-carousel .owl-dot span {

    display: block;

    width: 8px !important;

    height: 8px !important;

    margin: 0 !important;

    border-radius: 50% !important;

    background:
        rgba(255,255,255,0.35) !important;

    transition:
        all 0.35s ease;
}


.lavish-carousel .owl-dot.active span {

    width: 28px !important;

    border-radius: 10px !important;

    background:
        #d7ad52 !important;

    box-shadow:
        0 0 10px rgba(215,173,82,0.45);
}


/* =========================================================
   CINEMATIC IMAGE ANIMATION
========================================================= */

.lavish-carousel .owl-item.active .lavish-hero-image {

    animation:
        lavishCinematicZoom 8s ease-out forwards;
}


@keyframes lavishCinematicZoom {

    from {

        transform:
            scale(1.04);

        filter:
            brightness(0.92);
    }

    to {

        transform:
            scale(1.11);

        filter:
            brightness(1);
    }

}


/* =========================================================
   CONTENT ENTRANCE
========================================================= */

.lavish-carousel .owl-item.active .lavish-slide-content {

    animation:
        lavishContentMove 1s
        cubic-bezier(.22,.61,.36,1)
        forwards;
}


@keyframes lavishContentMove {

    from {

        opacity: 0;

        transform:
            translate(-55px, -50%);
    }

    to {

        opacity: 1;

        transform:
            translate(0, -50%);
    }

}


/* =========================================================
   CHILD ANIMATIONS
========================================================= */

.lavish-carousel .owl-item.active
.lavish-mini-title {

    animation:
        lavishFadeUp
        0.8s
        0.15s
        ease forwards;
}


.lavish-carousel .owl-item.active
.lavish-slide-content h1 {

    animation:
        lavishFadeUp
        0.9s
        0.30s
        ease forwards;
}


.lavish-carousel .owl-item.active
.lavish-slide-content h1 span::after {

    width: 100%;
}


.lavish-carousel .owl-item.active
.lavish-slide-content p {

    animation:
        lavishFadeUp
        0.9s
        0.48s
        ease forwards;
}


.lavish-carousel .owl-item.active
.lavish-mini-features {

    animation:
        lavishFadeUp
        0.9s
        0.62s
        ease forwards;
}


.lavish-carousel .owl-item.active
.lavish-slide-buttons {

    animation:
        lavishFadeUp
        0.9s
        0.76s
        ease forwards;
}


.lavish-carousel .owl-item.active
.lavish-bottom-badge {

    animation:
        lavishFadeUp
        0.9s
        0.90s
        ease forwards;
}


@keyframes lavishFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(25px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   GOLD BORDER CORNER DETAIL
========================================================= */

.lavish-slide-content::before {

    content: "";

    position: absolute;

    left: -24px;

    top: 3px;

    width: 2px;

    height: 65px;

    background:
        linear-gradient(
            to bottom,
            #d7ad52,
            transparent
        );

    opacity: 0.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .lavish-hero-slide {

        height: 680px;
    }


    .lavish-slide-content {

        left: 6%;

        width: 780px;

        max-width: 70%;
    }


    .lavish-slide-content h1 {

        font-size: 52px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .lavish-hero-slide {

        height: 680px;
    }


    .lavish-hero-image {

        object-position: center;
    }


    .lavish-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.94) 0%,
                rgba(0,0,0,0.76) 55%,
                rgba(0,0,0,0.45) 100%
            );
    }


    .lavish-slide-content {

        left: 25px;

        right: 25px;

        top: 48%;

        width: auto;

        max-width: none;
    }


    .lavish-slide-content::before {

        left: -12px;

        height: 50px;
    }


    .lavish-mini-title {

        font-size: 9px;

        letter-spacing: 2.2px;

        gap: 8px;

        margin-bottom: 14px;
    }


    .lavish-mini-title span {

        width: 24px;
    }


    .lavish-slide-content h1 {

        font-size: 38px;

        line-height: 1.10;

        letter-spacing: -0.5px;

        white-space: normal;

        margin-bottom: 17px;
    }


    .lavish-slide-content h1 span {

        display: inline;
    }


    .lavish-slide-content p {

        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 20px;
    }


    .lavish-mini-features {

        gap: 15px;

        margin-bottom: 23px;

        flex-wrap: wrap;
    }


    .lavish-mini-features > div {

        font-size: 11px;
    }


    .lavish-mini-features i {

        width: 34px;

        height: 34px;

        font-size: 12px;
    }


    .lavish-slide-buttons {

        gap: 9px;
    }


    .lavish-gold-btn,
    .lavish-outline-btn {

        min-width: auto;

        padding: 11px 15px;

        font-size: 11px;

        gap: 8px;
    }


    .lavish-bottom-badge {

        display: none;
    }


    .lavish-carousel .owl-nav {

        right: 18px;

        bottom: 18px;

        gap: 7px;
    }


    .lavish-carousel .owl-nav button {

        width: 40px !important;

        height: 40px !important;

        font-size: 17px !important;
    }


    .lavish-carousel .owl-dots {

        right: 20px;

        bottom: 70px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .lavish-hero-slide {

        height: 650px;
    }


    .lavish-slide-content {

        left: 20px;

        right: 20px;
    }


    .lavish-slide-content h1 {

        font-size: 33px;
    }


    .lavish-slide-content p {

        font-size: 12.5px;
    }


    .lavish-mini-features {

        gap: 10px;
    }


    .lavish-mini-features > div {

        font-size: 10px;
    }


    .lavish-gold-btn,
    .lavish-outline-btn {

        padding: 10px 12px;

        font-size: 10px;
    }

}

/* =========================================================
   MOVE BOTTOM STATS BOX CLOSER TO BUTTONS
========================================================= */

@media (min-width: 768px) {

    .lavish-bottom-badge {
        bottom: 165px;
    }

}

/* =========================================================
   THE LAVISH - EXTRA LUXURY MICRO ANIMATIONS
   ADD THIS AT THE VERY END OF CSS
========================================================= */


/* ---------------------------------------------------------
   1. GOLD LIGHT SWEEP ACROSS HERO
--------------------------------------------------------- */

.lavish-hero-slide::before {

    content: "";

    position: absolute;

    top: 0;
    left: -35%;

    width: 18%;
    height: 100%;

    z-index: 4;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        rgba(218,176,76,0.13),
        transparent
    );

    transform: skewX(-18deg);

    animation: lavishLuxurySweep 7s ease-in-out infinite;

}


@keyframes lavishLuxurySweep {

    0% {
        left: -35%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        left: 115%;
        opacity: 0.8;
    }

    55%,
    100% {
        left: 115%;
        opacity: 0;
    }

}


/* ---------------------------------------------------------
   2. GOLD GLOW FLOATING ANIMATION
--------------------------------------------------------- */

.lavish-gold-glow {

    animation:
        lavishGoldFloat 6s ease-in-out infinite alternate,
        lavishGoldPulse 4s ease-in-out infinite;

}


@keyframes lavishGoldFloat {

    0% {
        transform:
            translateY(-50%)
            translateX(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-47%)
            translateX(-35px)
            scale(1.05);
    }

    100% {
        transform:
            translateY(-53%)
            translateX(-65px)
            scale(1.12);
    }

}


@keyframes lavishGoldPulse {

    0%,
    100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }

}


/* ---------------------------------------------------------
   3. GOLD BUTTON CONTINUOUS SHINE
--------------------------------------------------------- */

.lavish-gold-btn {

    animation: lavishButtonFloat 3.5s ease-in-out infinite;

}


@keyframes lavishButtonFloat {

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

    50% {
        transform: translateY(-2px);
    }

}


.lavish-gold-btn::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform: skewX(-20deg);

    animation: lavishButtonShine 4s ease-in-out infinite;

}


@keyframes lavishButtonShine {

    0% {
        left: -120%;
    }

    35%,
    100% {
        left: 140%;
    }

}


/* ---------------------------------------------------------
   4. OUTLINE BUTTON GOLD BORDER PULSE
--------------------------------------------------------- */

.lavish-outline-btn {

    animation: lavishOutlinePulse 3s ease-in-out infinite;

}


@keyframes lavishOutlinePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(215,173,82,0);
    }

    50% {
        box-shadow:
            0 0 18px rgba(215,173,82,0.16);
    }

}


/* ---------------------------------------------------------
   5. FEATURE ICON SOFT FLOAT
--------------------------------------------------------- */

.lavish-mini-features > div i {

    animation: lavishIconFloat 3s ease-in-out infinite;

}


.lavish-mini-features > div:nth-child(2) i {

    animation-delay: 0.7s;

}


@keyframes lavishIconFloat {

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

    50% {
        transform: translateY(-4px);
    }

}


/* ---------------------------------------------------------
   6. FEATURE TEXT GOLD SHIMMER ON HOVER
--------------------------------------------------------- */

.lavish-mini-features > div {

    transition:
        transform 0.35s ease,
        color 0.35s ease;

}


.lavish-mini-features > div:hover {

    transform: translateX(5px);

    color: #dfb55b;

}


/* ---------------------------------------------------------
   7. STATS BOX LUXURY GLOW
--------------------------------------------------------- */

.lavish-bottom-badge {

    animation:
        lavishStatsFloat 4s ease-in-out infinite,
        lavishStatsGlow 4s ease-in-out infinite;

}


@keyframes lavishStatsFloat {

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

    50% {
        transform: translateY(-5px);
    }

}


@keyframes lavishStatsGlow {

    0%,
    100% {
        box-shadow:
            0 15px 45px rgba(0,0,0,0.35);
    }

    50% {
        box-shadow:
            0 15px 45px rgba(0,0,0,0.35),
            0 0 25px rgba(215,173,82,0.10);
    }

}


/* ---------------------------------------------------------
   8. GOLD LINE UNDER HEADING - MOVING SHINE
--------------------------------------------------------- */

.lavish-slide-content h1 span::after {

    animation:
        lavishUnderlineGlow 3s ease-in-out infinite;

}


@keyframes lavishUnderlineGlow {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(215,173,82,0);
    }

    50% {
        box-shadow:
            0 0 10px rgba(215,173,82,0.65);
    }

}


/* ---------------------------------------------------------
   9. NAVIGATION ARROWS ATTRACTIVE HOVER
--------------------------------------------------------- */

.lavish-carousel .owl-nav button {

    position: relative;

    overflow: hidden;

}


.lavish-carousel .owl-nav button::before {

    content: "";

    position: absolute;

    width: 0;
    height: 0;

    border-radius: 50%;

    background: rgba(215,173,82,0.18);

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    transition:
        width 0.45s ease,
        height 0.45s ease;

}


.lavish-carousel .owl-nav button:hover::before {

    width: 90px;
    height: 90px;

}


.lavish-carousel .owl-nav button span {

    position: relative;

    z-index: 2;

}


/* ---------------------------------------------------------
   10. DOT ACTIVE GOLD GLOW
--------------------------------------------------------- */

.lavish-carousel .owl-dot.active span {

    animation: lavishDotGlow 2s ease-in-out infinite;

}


@keyframes lavishDotGlow {

    0%,
    100% {
        box-shadow:
            0 0 5px rgba(215,173,82,0.25);
    }

    50% {
        box-shadow:
            0 0 16px rgba(215,173,82,0.75);
    }

}


/* ---------------------------------------------------------
   11. IMAGE VERY SLOW CINEMATIC MOVEMENT
--------------------------------------------------------- */

.lavish-carousel .owl-item.active .lavish-hero-image {

    animation:
        lavishPremiumImageMove 9s ease-out forwards;

}


@keyframes lavishPremiumImageMove {

    0% {

        transform:
            scale(1.04)
            translateX(0);

    }

    100% {

        transform:
            scale(1.10)
            translateX(-10px);

    }

}


/* ---------------------------------------------------------
   12. GOLD TITLE LINE PULSE
--------------------------------------------------------- */

.lavish-mini-title span {

    box-shadow:
        0 0 5px rgba(215,173,82,0.15);

    animation:
        lavishTitleLinePulse 2.5s ease-in-out infinite;

}


@keyframes lavishTitleLinePulse {

    0%,
    100% {
        opacity: 0.65;
        box-shadow:
            0 0 5px rgba(215,173,82,0.15);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 14px rgba(215,173,82,0.65);
    }

}


/* ---------------------------------------------------------
   13. DESKTOP ONLY
--------------------------------------------------------- */

@media (min-width: 768px) {

    .lavish-slide-content {

        animation:
            lavishContentBreath 6s ease-in-out infinite alternate;

    }

}


@keyframes lavishContentBreath {

    from {
        transform:
            translateY(-50%);
    }

    to {
        transform:
            translateY(calc(-50% - 3px));
    }

}


/* ---------------------------------------------------------
   14. REDUCE MOTION FOR ACCESSIBILITY
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .lavish-hero-slide *,
    .lavish-hero-slide::before {

        animation: none !important;

        transition: none !important;

    }

}



.btn-primaryicon{
    border-color: white !important;
}

/* cssssssssssssssssssssssss black  */

/* ============================================================
   THE LAVISH - PREMIUM MOTION & UI UPGRADE
   ADD THIS AT THE VERY END OF YOUR CSS
============================================================ */


/* ============================================================
   01. GLOBAL FOUNDER SECTION
============================================================ */

.lavish-founder {
    isolation: isolate;
}

.lavish-founder .lf-container {
    animation: founderSectionReveal 1.2s ease both;
}

@keyframes founderSectionReveal {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

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


/* ============================================================
   02. MEET OUR FOUNDER - ONE LINE
============================================================ */

.lf-header {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.lf-header h2 {
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: 1.05;
    white-space: nowrap;
    letter-spacing: -1px;
}

.lf-header h2 strong {
    display: inline !important;
    margin-top: 0;
    margin-left: 12px;
}


/* Header animation */

.lf-header {
    animation: founderHeaderReveal 1.1s cubic-bezier(.16,1,.3,1) both;
}

@keyframes founderHeaderReveal {
    from {
        opacity: 0;
        transform: translateY(55px);
    }

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

.lf-eyebrow {
    animation:
        eyebrowReveal 1s ease .15s both,
        eyebrowFloat 4s ease-in-out 1.5s infinite;
}

@keyframes eyebrowReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 1px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 5px;
    }
}

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

    50% {
        transform: translateY(-3px);
    }
}


/* Gold line animation */

.lf-eyebrow span {
    position: relative;
    overflow: hidden;
}

.lf-eyebrow span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: founderGoldSweep 2.8s ease-in-out infinite;
}

@keyframes founderGoldSweep {
    0% {
        left: -120%;
    }

    45%,100% {
        left: 120%;
    }
}


/* Header paragraph */

.lf-header p {
    font-size: 16px;
    line-height: 1.9;
    animation: founderParagraphReveal 1s ease .35s both;
}

@keyframes founderParagraphReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(5px);
    }

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


/* ============================================================
   03. PROFILE AREA
============================================================ */

.lf-profile {
    perspective: 1400px;
}


/* Portrait wrapper */

.lf-portrait-wrap {
    animation:
        portraitAreaReveal 1.4s cubic-bezier(.16,1,.3,1) .25s both,
        portraitAreaFloat 6s ease-in-out 2s infinite;
}

@keyframes portraitAreaReveal {
    from {
        opacity: 0;
        transform:
            translateX(-100px)
            scale(.88)
            rotateY(12deg);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1)
            rotateY(0);
    }
}

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

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


/* ============================================================
   04. ROTATING GOLD RINGS - MORE VISIBLE
============================================================ */

.lf-portrait-ring {
    box-shadow:
        0 0 12px rgba(199,161,90,.15),
        inset 0 0 12px rgba(199,161,90,.08);
}

.ring-one {
    animation:
        lfLuxuryRingOne 12s linear infinite !important;
}

.ring-two {
    animation:
        lfLuxuryRingTwo 18s linear infinite !important;
}

@keyframes lfLuxuryRingOne {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.035);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes lfLuxuryRingTwo {
    from {
        transform: rotate(360deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(.97);
    }

    to {
        transform: rotate(0deg) scale(1);
    }
}


/* ============================================================
   05. PORTRAIT - PREMIUM FLOAT + GLOW
============================================================ */

.lf-portrait {
    animation:
        founderPortraitFloat 5s ease-in-out infinite,
        founderPortraitGlow 4s ease-in-out infinite !important;

    transition:
        transform .8s cubic-bezier(.16,1,.3,1),
        box-shadow .8s ease;
}

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

    50% {
        transform: translateY(-12px);
    }
}

@keyframes founderPortraitGlow {
    0%,100% {
        box-shadow:
            0 30px 80px rgba(21,19,19,.20);
    }

    50% {
        box-shadow:
            0 35px 90px rgba(21,19,19,.28),
            0 0 35px rgba(199,161,90,.13);
    }
}

.lf-portrait:hover {
    transform: translateY(-16px) scale(1.015);
}


/* Image zoom */

.lf-portrait img {
    transition:
        transform 1.5s cubic-bezier(.16,1,.3,1),
        filter 1s ease;
}

.lf-portrait:hover img {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.03);
}


/* ============================================================
   06. IMAGE LIGHT SWEEP
============================================================ */

.lf-portrait::after {
    content: "";
    position: absolute;

    top: 0;
    left: -150%;

    width: 55%;
    height: 100%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,.20),
            rgba(228,201,140,.18),
            transparent
        );

    transform: skewX(-18deg);

    z-index: 5;
    pointer-events: none;

    animation: portraitLightSweep 5.5s ease-in-out infinite;
}

@keyframes portraitLightSweep {

    0%,25% {
        left: -150%;
    }

    55% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}


/* ============================================================
   07. EXPERIENCE BADGE
============================================================ */

.lf-experience {
    animation:
        founderBadgeEntrance 1s cubic-bezier(.16,1,.3,1) 1s both,
        founderBadgeFloat 4s ease-in-out 2s infinite,
        founderBadgeGlow 3s ease-in-out infinite !important;
}

@keyframes founderBadgeEntrance {
    from {
        opacity: 0;
        transform:
            scale(.4)
            rotate(-30deg);
    }

    to {
        opacity: 1;
        transform:
            scale(1)
            rotate(0);
    }
}

@keyframes founderBadgeFloat {
    0%,100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

@keyframes founderBadgeGlow {
    0%,100% {
        box-shadow:
            0 15px 40px rgba(21,19,19,.18);
    }

    50% {
        box-shadow:
            0 20px 50px rgba(21,19,19,.24),
            0 0 25px rgba(199,161,90,.30);
    }
}


/* ============================================================
   08. FLOATING DOTS
============================================================ */

.lf-floating-dot {
    box-shadow:
        0 0 0 0 rgba(199,161,90,.45),
        0 0 15px rgba(199,161,90,.35);

    animation:
        luxuryDotMove 3.5s ease-in-out infinite,
        luxuryDotPulse 2.5s ease-in-out infinite !important;
}

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

    25% {
        transform: translate(8px,-12px);
    }

    50% {
        transform: translate(-5px,-22px);
    }

    75% {
        transform: translate(-10px,-8px);
    }
}

@keyframes luxuryDotPulse {
    0%,100% {
        box-shadow:
            0 0 0 0 rgba(199,161,90,.2),
            0 0 10px rgba(199,161,90,.25);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(199,161,90,.05),
            0 0 25px rgba(199,161,90,.55);
    }
}


/* ============================================================
   09. NAME PANEL - STRONG ENTRANCE
============================================================ */

.lf-name-panel {
    animation:
        founderNamePanelReveal 1.2s cubic-bezier(.16,1,.3,1) .55s both,
        founderPanelFloat 6s ease-in-out 2s infinite;
}

@keyframes founderNamePanelReveal {

    from {
        opacity: 0;
        transform:
            translate(100px,-50%)
            scale(.92);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform:
            translate(0,-50%)
            scale(1);
        filter: blur(0);
    }
}

@keyframes founderPanelFloat {

    0%,100% {
        margin-top: 0;
    }

    50% {
        margin-top: -7px;
    }
}


/* Panel hover */

.lf-name-panel {
    transition:
        box-shadow .5s ease,
        border-color .5s ease;
}

.lf-name-panel:hover {
    border-color: rgba(199,161,90,.35);

    box-shadow:
        0 35px 85px rgba(21,19,19,.13),
        0 0 35px rgba(199,161,90,.07);
}


/* Name font bigger */

.lf-name-panel h3 {
    font-size: clamp(38px, 3vw, 50px);
    line-height: 1.08;
}

.lf-name-kicker {
    font-size: 12px;
}

.lf-institute {
    font-size: 15px;
}

.lf-description {
    font-size: 14px;
    line-height: 1.85;
}


/* ============================================================
   10. MINI CREDENTIALS
============================================================ */

.lf-mini-credentials div {
    transition:
        transform .35s ease,
        background .35s ease;
}

.lf-mini-credentials div:hover {
    transform: translateY(-5px);
}

.lf-mini-credentials strong {
    font-size: 24px;
}

.lf-mini-credentials span {
    font-size: 10px;
}


/* ============================================================
   11. INFORMATION CARDS
============================================================ */

.lf-information {
    perspective: 1200px;
}

.lf-info-card {
    animation:
        infoCardReveal .9s cubic-bezier(.16,1,.3,1) both;
}

.lf-info-card:nth-child(1) {
    animation-delay: .15s;
}

.lf-info-card:nth-child(2) {
    animation-delay: .35s;
}

@keyframes infoCardReveal {
    from {
        opacity: 0;
        transform:
            translateY(60px)
            scale(.95)
            rotateX(8deg);
    }

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

.lf-info-card {
    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        box-shadow .6s ease,
        border-color .5s ease;
}

.lf-info-card:hover {
    transform:
        translateY(-12px)
        scale(1.01);

    border-color: rgba(199,161,90,.35);

    box-shadow:
        0 30px 75px rgba(21,19,19,.14),
        0 0 25px rgba(199,161,90,.08);
}


/* ============================================================
   12. CARD ICON ANIMATION
============================================================ */

.lf-card-icon {
    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        background .4s ease,
        box-shadow .4s ease;
}

.lf-info-card:hover .lf-card-icon {
    transform:
        rotate(360deg)
        scale(1.08);

    background: var(--lf-gold);
    color: var(--lf-black);

    box-shadow:
        0 0 0 8px rgba(199,161,90,.10),
        0 0 25px rgba(199,161,90,.30);
}


/* ============================================================
   13. QUALIFICATION TEXT - BIGGER
============================================================ */

.lf-list p {
    font-size: 13px;
    line-height: 1.65;
}

.lf-list > div {
    transition:
        transform .3s ease,
        padding-left .3s ease,
        border-color .3s ease;
}

.lf-list > div:hover {
    transform: translateX(6px);
    padding-left: 5px;
    border-color: rgba(199,161,90,.35);
}


/* ============================================================
   14. EXPERTISE ITEMS
============================================================ */

.lf-expertise-item {
    min-height: 92px;

    animation:
        expertiseReveal .7s cubic-bezier(.16,1,.3,1) both;

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease,
        background .45s ease,
        border-color .45s ease;
}

.lf-expertise-item:nth-child(1) { animation-delay: .1s; }
.lf-expertise-item:nth-child(2) { animation-delay: .18s; }
.lf-expertise-item:nth-child(3) { animation-delay: .26s; }
.lf-expertise-item:nth-child(4) { animation-delay: .34s; }
.lf-expertise-item:nth-child(5) { animation-delay: .42s; }
.lf-expertise-item:nth-child(6) { animation-delay: .50s; }
.lf-expertise-item:nth-child(7) { animation-delay: .58s; }
.lf-expertise-item:nth-child(8) { animation-delay: .66s; }

@keyframes expertiseReveal {
    from {
        opacity: 0;
        transform:
            translateX(35px)
            scale(.96);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1);
    }
}

.lf-expertise-item:hover {
    transform:
        translateY(-7px)
        translateX(4px);

    background: #fff;

    border-color:
        rgba(199,161,90,.5);

    box-shadow:
        0 15px 35px rgba(21,19,19,.10);
}

.lf-expertise-item i {
    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .4s ease;
}

.lf-expertise-item:hover i {
    transform:
        rotate(360deg)
        scale(1.1);

    box-shadow:
        0 0 20px rgba(199,161,90,.28);
}

.lf-expertise-item span {
    font-size: 13px;
}


/* ============================================================
   15. JOURNEY SECTION
============================================================ */

.lf-journey {
    animation:
        journeyReveal 1s cubic-bezier(.16,1,.3,1) both;
}

@keyframes journeyReveal {
    from {
        opacity: 0;
        transform:
            translateY(70px)
            scale(.97);
    }

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

.lf-journey-item {
    transition:
        transform .45s ease,
        border-color .4s ease;
}

.lf-journey-item:hover {
    transform: translateY(-7px);
    border-color: rgba(199,161,90,.5);
}

.lf-journey-icon {
    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        background .4s ease,
        color .4s ease;
}

.lf-journey-item:hover .lf-journey-icon {
    transform:
        rotate(360deg)
        scale(1.08);

    background: var(--lf-gold);
    color: var(--lf-black);
}

.lf-journey-item strong {
    font-size: 16px;
}

.lf-journey-item span {
    font-size: 12px;
}


/* ============================================================
   16. VALUES
============================================================ */

.lf-value {
    animation:
        valueReveal .8s cubic-bezier(.16,1,.3,1) both;
}

.lf-value:nth-child(1) {
    animation-delay: .1s;
}

.lf-value:nth-child(2) {
    animation-delay: .25s;
}

.lf-value:nth-child(3) {
    animation-delay: .4s;
}

@keyframes valueReveal {
    from {
        opacity: 0;
        transform:
            translateY(45px)
            scale(.94);
    }

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

.lf-value {
    transition:
        transform .55s cubic-bezier(.16,1,.3,1),
        box-shadow .5s ease;
}

.lf-value:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    box-shadow:
        0 20px 50px rgba(21,19,19,.12);
}

.lf-value i {
    transition:
        transform .5s ease;
}

.lf-value:hover i {
    transform:
        scale(1.2)
        rotate(12deg);
}

.lf-value h4 {
    font-size: 26px;
}

.lf-value p {
    font-size: 13px;
}


/* ============================================================
   17. SIGNATURE
============================================================ */

.lf-signature {
    animation:
        signatureReveal 1.2s cubic-bezier(.16,1,.3,1) both;
}

@keyframes signatureReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.lf-signature p {
    font-size: 20px;
}


/* ============================================================
   18. BACKGROUND GOLD ORBITS
============================================================ */

.lf-glow-one {
    animation:
        backgroundOrbitOne 18s linear infinite;
}

.lf-glow-two {
    animation:
        backgroundOrbitTwo 22s linear infinite;
}

@keyframes backgroundOrbitOne {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes backgroundOrbitTwo {
    0% {
        transform: rotate(360deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(.92);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}


/* ============================================================
   19. HERO - STRONGER SLIDE ANIMATION
============================================================ */

.lavish-carousel .owl-item.active .lavish-slide-content {
    animation:
        heroContentEntrance 1.35s cubic-bezier(.16,1,.3,1) forwards !important;
}

@keyframes heroContentEntrance {

    from {
        opacity: 0;
        transform:
            translate(-100px,-50%)
            scale(.94);
        filter: blur(7px);
    }

    to {
        opacity: 1;
        transform:
            translate(0,-50%)
            scale(1);
        filter: blur(0);
    }
}


/* Hero heading */

.lavish-slide-content h1 {
    font-size: clamp(48px, 4.8vw, 76px);
    line-height: 1.05;
    white-space: nowrap;
    text-shadow:
        0 5px 25px rgba(0,0,0,.45);
}


/* Hero image */

.lavish-carousel .owl-item.active .lavish-hero-image {
    animation:
        heroPremiumZoom 10s cubic-bezier(.16,1,.3,1) forwards !important;
}

@keyframes heroPremiumZoom {

    from {
        transform:
            scale(1.03)
            translate3d(0,0,0);
        filter:
            brightness(.82)
            saturate(.9);
    }

    to {
        transform:
            scale(1.13)
            translate3d(-12px,0,0);
        filter:
            brightness(1)
            saturate(1.05);
    }
}


/* ============================================================
   20. HERO TEXT STAGGER
============================================================ */

.lavish-carousel .owl-item.active .lavish-mini-title {
    animation:
        heroItemReveal .9s cubic-bezier(.16,1,.3,1) .15s both !important;
}

.lavish-carousel .owl-item.active h1 {
    animation:
        heroItemReveal 1s cubic-bezier(.16,1,.3,1) .3s both !important;
}

.lavish-carousel .owl-item.active p {
    animation:
        heroItemReveal 1s cubic-bezier(.16,1,.3,1) .48s both !important;
}

.lavish-carousel .owl-item.active .lavish-mini-features {
    animation:
        heroItemReveal 1s cubic-bezier(.16,1,.3,1) .62s both !important;
}

.lavish-carousel .owl-item.active .lavish-slide-buttons {
    animation:
        heroItemReveal 1s cubic-bezier(.16,1,.3,1) .78s both !important;
}

.lavish-carousel .owl-item.active .lavish-bottom-badge {
    animation:
        heroItemReveal 1s cubic-bezier(.16,1,.3,1) .92s both !important;
}

@keyframes heroItemReveal {

    from {
        opacity: 0;
        transform:
            translateY(45px)
            scale(.97);
        filter: blur(5px);
    }

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


/* ============================================================
   21. HERO GOLD LIGHT
============================================================ */

.lavish-gold-glow {
    animation:
        heroGoldFloat 7s ease-in-out infinite alternate,
        heroGoldPulse 3.5s ease-in-out infinite !important;
}

@keyframes heroGoldFloat {

    0% {
        transform:
            translateY(-50%)
            translateX(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-48%)
            translateX(-45px)
            scale(1.08);
    }

    100% {
        transform:
            translateY(-53%)
            translateX(-90px)
            scale(1.15);
    }
}

@keyframes heroGoldPulse {

    0%,100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}


/* ============================================================
   22. HERO BUTTON - PREMIUM
============================================================ */

.lavish-gold-btn {
    animation:
        heroButtonFloat 3.2s ease-in-out infinite !important;

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease !important;
}

@keyframes heroButtonFloat {

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

    50% {
        transform: translateY(-3px);
    }
}

.lavish-gold-btn:hover {
    transform:
        translateY(-7px)
        scale(1.035) !important;

    box-shadow:
        0 20px 45px rgba(214,171,76,.40),
        0 0 25px rgba(214,171,76,.15);
}


/* ============================================================
   23. OUTLINE BUTTON
============================================================ */

.lavish-outline-btn {
    transition:
        all .45s cubic-bezier(.16,1,.3,1) !important;
}

.lavish-outline-btn:hover {
    transform:
        translateY(-7px)
        scale(1.035) !important;

    box-shadow:
        0 20px 40px rgba(214,171,76,.30);
}


/* ============================================================
   24. HERO NAVIGATION
============================================================ */

.lavish-carousel .owl-nav button {
    transition:
        all .45s cubic-bezier(.16,1,.3,1) !important;
}

.lavish-carousel .owl-nav button:hover {
    transform:
        translateY(-6px)
        scale(1.08) !important;
}


/* ============================================================
   25. HERO DOTS
============================================================ */

.lavish-carousel .owl-dot.active span {
    animation:
        heroDotPulse 1.8s ease-in-out infinite !important;
}

@keyframes heroDotPulse {

    0%,100% {
        box-shadow:
            0 0 5px rgba(215,173,82,.25);
    }

    50% {
        box-shadow:
            0 0 22px rgba(215,173,82,.85);
    }
}


/* ============================================================
   26. MOBILE - FOUNDER HEADING
============================================================ */

@media (max-width: 767px) {

    .lf-header h2 {
        font-size: 42px;
        white-space: normal;
        line-height: 1.08;
    }

    .lf-header h2 strong {
        display: inline !important;
        margin-left: 5px;
    }

    .lf-header p {
        font-size: 14px;
    }

    .lf-name-panel h3 {
        font-size: 37px;
    }

    .lf-institute {
        font-size: 14px;
    }

    .lf-description {
        font-size: 13px;
    }

    .lf-list p {
        font-size: 13px;
    }

    .lf-expertise-item span {
        font-size: 13px;
    }

    .lf-journey-item strong {
        font-size: 15px;
    }

    .lf-journey-item span {
        font-size: 11px;
    }

    .lf-value h4 {
        font-size: 24px;
    }

    .lf-signature p {
        font-size: 17px;
    }

    .lavish-slide-content h1 {
        font-size: 38px;
        white-space: normal;
    }
}


/* ============================================================
   27. SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .lf-header h2 {
        font-size: 36px;
    }

    .lf-name-panel h3 {
        font-size: 32px;
    }

    .lf-experience {
        width: 115px;
        height: 115px;
    }

    .lf-experience-number {
        font-size: 30px;
    }

    .lavish-slide-content h1 {
        font-size: 33px;
    }
}


/* ============================================================
   28. ACCESSIBILITY
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .lavish-founder *,
    .lavish-founder::before,
    .lavish-founder::after,
    .lavish-luxury-hero *,
    .lavish-luxury-hero::before,
    .lavish-luxury-hero::after {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   FOUNDER SECTION - CENTER + IMAGE LEFT + CONTENT BEHIND
   EXISTING UI / COLORS / IMAGE SAME
========================================================= */

/* Main complete section */
.founder-container {
    width: 100%;
    max-width: 1180px !important;

    margin: 0 auto !important;
    padding: 0 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;

    /* complete group center */
    transform: translateX(-20px);
}


/* =========================================================
   IMAGE - LEFT SIDE
========================================================= */

.founder-image-area {
    width: 500px !important;
    flex: 0 0 500px !important;

    position: relative !important;

    z-index: 5 !important;

    margin-right: -80px !important;
}


/* Image frame */
.founder-image-frame {
    width: 100% !important;
    max-width: 450px !important;

    margin: 0 auto !important;

    position: relative !important;

    z-index: 5 !important;
}


/* Image */
.founder-image-frame img {
    width: 100% !important;
    height: 580px !important;

    object-fit: cover !important;
    object-position: center !important;

    display: block !important;
}


/* =========================================================
   WHITE FOUNDER CONTENT - RIGHT + BEHIND IMAGE
========================================================= */

.founder-content {
    width: 860px !important;
    min-height: 640px;

    flex: 0 0 560px !important;

    position: relative !important;

    z-index: 2 !important;

    background: #ffffff;

    padding: 55px 55px 45px 125px !important;

    margin-left: 0 !important;
}


/* =========================================================
   10+ EXPERIENCE BADGE
========================================================= */

.founder-experience {
    position: absolute !important;

    right: -25px !important;
    bottom: 0 !important;

    z-index: 20 !important;

    width: 145px !important;
    height: 145px !important;

    border-radius: 50%;

    overflow: visible !important;
}


/* =========================================================
   FOUNDER TEXT - SLIGHTLY BIGGER
========================================================= */

.founder-small-title {
    font-size: 16px !important;
    letter-spacing: 4px !important;
}


.founder-content h2 {
    font-size: 52px !important;
    line-height: 1.02 !important;
}


.founder-content h3 {
    font-size: 27px !important;
}


.founder-content p {
    font-size: 15px !important;
    line-height: 1.8 !important;
}


/* =========================================================
   EXPERIENCE TEXT
========================================================= */

.experience-number {
    font-size: 42px !important;
    line-height: 1 !important;
}

.experience-text {
    font-size: 9px !important;
}


/* =========================================================
   STATS
========================================================= */

.founder-values {
    display: flex !important;
    width: 100% !important;
}

.founder-value strong {
    font-size: 21px !important;
}

.founder-value span {
    font-size: 10px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .founder-container {
        max-width: 1000px !important;
        transform: none !important;
    }

    .founder-image-area {
        width: 450px !important;
        flex: 0 0 450px !important;

        margin-right: -70px !important;
    }

    .founder-content {
        width: 520px !important;
        flex: 0 0 520px !important;

        padding-left: 105px !important;
        padding-right: 40px !important;
    }

    .founder-image-frame img {
        height: 550px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .founder-container {
        display: flex !important;
        flex-direction: column !important;

        max-width: 720px !important;

        transform: none !important;
    }

    .founder-image-area {
        width: 100% !important;
        flex: none !important;

        margin: 0 !important;

        z-index: 5 !important;
    }

    .founder-image-frame {
        max-width: 450px !important;
    }

    .founder-content {
        width: 100% !important;
        flex: none !important;

        margin-top: -60px !important;

        padding: 100px 40px 45px !important;

        z-index: 2 !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .founder-container {
        padding: 0 15px !important;
    }

    .founder-image-frame {
        max-width: 390px !important;
    }

    .founder-image-frame img {
        height: 470px !important;
    }

    .founder-content {
        margin-top: -45px !important;

        padding: 80px 25px 35px !important;
    }

    .founder-content h2 {
        font-size: 40px !important;
    }

    .founder-content h3 {
        font-size: 22px !important;
    }

    .founder-experience {
        width: 125px !important;
        height: 125px !important;

        right: -5px !important;
    }

    .experience-number {
        font-size: 36px !important;
    }
}

/* new final css for founder section  */

    :root{
      --lf-ivory:#f8f5ee;
      --lf-cream:#eee7d8;
      --lf-white:#fffdf9;
      --lf-black:#171512;
      --lf-text:#27231e;
      --lf-muted:#777169;
      --lf-gold:#c9a253;
      --lf-gold-dark:#a77c2d;
      --lf-line:#dfd4c1;
      --lf-nude:#e9dcc9;
    }

    *{box-sizing:border-box;margin:0;padding:0}

    /* html{scroll-behavior:smooth} */

    body{
      margin:0;
      /* background:var(--lf-ivory); */
      color:var(--lf-text);
      font-family:"Montserrat",sans-serif;
    }

    .lavish-founder{
      position:relative;
      overflow:hidden;
      padding:95px 0 90px;
      background:
        radial-gradient(circle at 12% 18%, rgba(201,162,83,.10), transparent 25%),
        radial-gradient(circle at 88% 72%, rgba(201,162,83,.08), transparent 25%),
        linear-gradient(135deg,#fbf9f4 0%,#f5f0e6 48%,#fcfaf6 100%);
    }

    .lavish-founder::before{
      content:"";
      position:absolute;
      inset:20px;
      border:1px solid rgba(201,162,83,.16);
      pointer-events:none;
    }

    .lf-container{
      width:min(1440px,92%);
      margin:auto;
      position:relative;
      z-index:2;
    }

    /* ================= HEADER ================= */

    .lf-header{
      text-align:center;
      max-width:900px;
      margin:0 auto 70px;
    }

    .lf-eyebrow{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:18px;
      color:var(--lf-gold-dark);
      font-size:14px;
      font-weight:700;
      letter-spacing:5px;
      text-transform:uppercase;
      margin-bottom:20px;
    }

    .lf-eyebrow span{
      width:65px;
      height:1px;
      background:var(--lf-gold);
      display:block;
    }

    .lf-header h2{
      /* font-family:"Cormorant Garamond",serif; */
      /* font-size:clamp(58px,6vw,69px); */
      font-family: Georgia,
        "Times New Roman",
        serif;
      font-size:clamp(34px, 4vw, 65px);
      line-height:.9;
      font-weight:600;
      color:var(--lf-black);
    }

    .lf-header h2 strong{
      color:var(--lf-gold-dark);
      display:inline-block;
      margin-left:15px;
      font-style:italic;
      font-weight:600;
    }

    .lf-header p{
      margin:25px auto 0;
      max-width:720px;
      color:var(--lf-muted);
      font-size:17px;
      line-height:1.9;
      letter-spacing:.4px;
    }

    /* ================= PROFILE ================= */

    .lf-profile{
      min-height:650px;
      display:grid;
      grid-template-columns:minmax(500px,1fr) minmax(520px,1fr);
      align-items:center;
      justify-content:center;
      max-width:1250px;
      margin:0 auto 100px;
      position:relative;
      gap:0;
    }

    .lf-vertical-text{
      position:absolute;
      left:-15px;
      top:50%;
      transform:translateY(-50%) rotate(-90deg);
      font-size:13px;
      letter-spacing:6px;
      font-weight:700;
      color:#bda67c;
      z-index:5;
    }

    .lf-portrait-wrap{
      width:570px;
      height:650px;
      position:relative;
      margin:auto;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .lf-portrait{
      width:440px;
      height:555px;
      position:relative;
      z-index:3;
      overflow:hidden;
      border:7px solid var(--lf-black);
      border-radius:205px 205px 32px 32px;
      background:#ddd;
      box-shadow:0 28px 55px rgba(25,20,12,.15);
    }

    .lf-portrait img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .lf-image-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(0,0,0,.12),transparent 35%);
      pointer-events:none;
    }

    .lf-portrait-ring{
      position:absolute;
      border:1px solid rgba(201,162,83,.45);
      border-radius:50%;
      pointer-events:none;
    }

    .ring-one{
      width:610px;
      height:720px;
      animation:lfRotate 24s linear infinite;
    }

    .ring-two{
      width:500px;
      height:500px;
      border-style:dashed;
      opacity:.7;
      animation:lfRotateReverse 18s linear infinite;
    }

    .lf-portrait-ring::after{
      content:"";
      width:12px;
      height:12px;
      background:var(--lf-gold);
      border-radius:50%;
      position:absolute;
      top:10%;
      left:7%;
      box-shadow:0 0 0 8px rgba(201,162,83,.08);
    }

    .ring-two::after{
      width:9px;
      height:9px;
      top:78%;
      left:92%;
    }

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

    @keyframes lfRotateReverse{
      to{transform:rotate(-360deg)}
    }

    .lf-experience{
      position:absolute;
      z-index:6;
      right:38px;
      bottom:25px;
      width:145px;
      height:145px;
      border-radius:50%;
      background:var(--lf-gold);
      border:7px solid var(--lf-white);
      outline:1px solid rgba(201,162,83,.35);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      box-shadow:0 15px 35px rgba(45,31,8,.18);
      animation:lfFloat 4s ease-in-out infinite;
    }

    @keyframes lfFloat{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-8px)}
    }

    .lf-experience-star{
      font-size:14px;
      color:var(--lf-black);
      margin-bottom:2px;
    }

    .lf-experience-number{
      font-family:"Cormorant Garamond",serif;
      font-size:43px;
      font-weight:700;
      line-height:.9;
      color:#111;
    }

    .lf-experience-label{
      text-align:center;
      font-size:9px;
      font-weight:700;
      line-height:1.35;
      letter-spacing:1.7px;
      color:#17130d;
      margin-top:7px;
    }

    .lf-floating-dot{
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--lf-gold);
      position:absolute;
      z-index:7;
      box-shadow:0 0 0 8px rgba(201,162,83,.09);
      animation:lfPulse 3s ease-in-out infinite;
    }

    .dot-one{top:110px;left:55px}
    .dot-two{right:30px;top:170px;animation-delay:1s}

    @keyframes lfPulse{
      0%,100%{transform:scale(1);opacity:.75}
      50%{transform:scale(1.35);opacity:1}
    }

    /* ================= NAME PANEL ================= */

    .lf-name-panel{
      min-height:530px;
      padding:70px 75px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(210,197,175,.55);
      position:relative;
      box-shadow:0 25px 65px rgba(50,38,20,.07);
      display:flex;
      flex-direction:column;
      justify-content:center;
      width: auto;
    }

    .lf-name-number{
      position:absolute;
      top:25px;
      right:35px;
      font-family:"Cormorant Garamond",serif;
      font-size:55px;
      line-height:1;
      color:#e8dcc4;
      font-style:italic;
      font-weight:600;
    }

    .lf-name-kicker{
      color:var(--lf-gold-dark);
      font-size:13px;
      letter-spacing:5px;
      font-weight:700;
      margin-bottom:22px;
    }

    .lf-name-panel h3{
      font-family:"Cormorant Garamond",serif;
      font-size:clamp(50px,4.5vw,56px);
      /* line-height:.9; */
      font-weight:500;
      color:var(--lf-black);
      max-width:600px;
    }

    .lf-name-panel h3 em{
      display:block;
      color:var(--lf-gold-dark);
      font-style:italic;
      font-weight:600;
      margin-top:8px;
    }

    .lf-gold-line{
      display:flex;
      align-items:center;
      gap:12px;
      margin:28px 0 27px;
    }

    .lf-gold-line span{
      width:55px;
      height:1px;
      background:var(--lf-gold);
    }

    .lf-gold-line i{
      font-size:12px;
      color:var(--lf-gold-dark);
      font-style:normal;
    }

    .lf-institute{
      font-size:17px;
      line-height:1.65;
      font-weight:700;
      color:#24211d;
      max-width:560px;
    }

    .lf-description{
      font-size:16px;
      line-height:1.85;
      color:var(--lf-muted);
      max-width:600px;
      margin-top:15px;
    }

    .lf-mini-credentials{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      margin-top:28px;
      border-top:1px solid var(--lf-line);
      padding-top:25px;
    }

    .lf-mini-credentials > div{
      padding:0 22px;
      border-right:1px solid var(--lf-line);
      text-align:center;
    }

    .lf-mini-credentials > div:first-child{padding-left:0}
    .lf-mini-credentials > div:last-child{
      border-right:0;
      padding-right:0;
    }

    .lf-mini-credentials strong{
      display:block;
      font-family:"Cormorant Garamond",serif;
      font-size:31px;
      color:var(--lf-gold-dark);
      line-height:1;
      margin-bottom:8px;
    }

    .lf-mini-credentials span{
      display:block;
      font-size:11px;
      letter-spacing:1.2px;
      color:#81796d;
      line-height:1.45;
      text-transform:uppercase;
    }

    /* ================= INFORMATION ================= */

    .lf-information{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:35px;
      max-width:1250px;
      margin:0 auto 70px;
    }

    .lf-info-card{
      background:rgba(255,255,255,.76);
      border:1px solid var(--lf-line);
      padding:48px;
      box-shadow:0 18px 45px rgba(48,37,18,.06);
      position:relative;
    }

    .lf-card-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:30px;
    }

    .lf-card-icon{
      width:62px;
      height:62px;
      border:1px solid var(--lf-gold);
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--lf-gold-dark);
      font-size:23px;
    }

    .lf-card-top > span{
      font-family:"Cormorant Garamond",serif;
      font-size:43px;
      color:#ded0b6;
      font-style:italic;
      font-weight:600;
    }

    .lf-card-title small{
      display:block;
      color:var(--lf-gold-dark);
      letter-spacing:3px;
      font-size:11px;
      font-weight:700;
      margin-bottom:10px;
    }

    .lf-card-title h3{
      font-family:"Cormorant Garamond",serif;
      font-size:48px;
      line-height:.95;
      font-weight:600;
      color:var(--lf-black);
    }

    .lf-card-title h3 em{
      color:var(--lf-gold-dark);
      font-style:italic;
      font-weight:600;
    }

    .lf-list{
      margin-top:32px;
    }

    .lf-list > div{
      display:grid;
      grid-template-columns:40px 1fr;
      gap:16px;
      align-items:center;
      padding:16px 0;
      border-top:1px solid #e6ded1;
    }

    .lf-list > div:first-child{
      border-top:0;
    }

    .lf-list > div > span{
      font-family:"Cormorant Garamond",serif;
      font-size:18px;
      color:var(--lf-gold-dark);
      font-weight:700;
    }

    .lf-list p{
      font-size:15px;
      line-height:1.55;
      color:#4e4942;
      font-weight:500;
    }

    .lf-expertise-grid{
      margin-top:32px;
      display:grid;
      grid-template-columns:1fr 1fr;
      border-top:1px solid #e6ded1;
    }

    .lf-expertise-item{
      display:flex;
      align-items:center;
      gap:14px;
      min-height:82px;
      padding:14px 12px;
      border-bottom:1px solid #e6ded1;
    }

    .lf-expertise-item:nth-child(odd){
      border-right:1px solid #e6ded1;
    }

    .lf-expertise-item i{
      flex:0 0 28px;
      color:var(--lf-gold-dark);
      font-size:16px;
    }

    .lf-expertise-item span{
      font-size:14px;
      line-height:1.45;
      color:#4e4942;
      font-weight:600;
    }

    /* ================= VALUES ================= */

    .lf-values{
      max-width:1100px;
      margin:0 auto 70px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      border-top:1px solid var(--lf-line);
      border-bottom:1px solid var(--lf-line);
    }

    .lf-value{
      min-height:220px;
      padding:35px 25px;
      text-align:center;
      position:relative;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
    }

    .lf-value:not(:last-child){
      border-right:1px solid var(--lf-line);
    }

    .lf-value > span{
      position:absolute;
      top:16px;
      right:20px;
      font-size:11px;
      letter-spacing:2px;
      color:#cbb997;
    }

    .lf-value i{
      color:var(--lf-gold-dark);
      font-size:27px;
      margin-bottom:15px;
    }

    .lf-value h4{
      font-family:"Cormorant Garamond",serif;
      font-size:35px;
      font-weight:700;
      color:var(--lf-black);
      margin-bottom:5px;
    }

    .lf-value p{
      color:#81796d;
      font-size:13px;
      letter-spacing:1px;
    }

    .lf-value-main{
      background:rgba(201,162,83,.08);
    }

    /* ================= SIGNATURE ================= */

    .lf-signature{
      text-align:center;
      max-width:850px;
      margin:0 auto;
      padding-top:20px;
    }

    .lf-signature-mark{
      color:var(--lf-gold);
      font-size:26px;
      margin-bottom:12px;
    }

    .lf-signature p{
      font-family:"Cormorant Garamond",serif;
      font-size:30px;
      line-height:1.35;
      font-style:italic;
      color:#4b443b;
      max-width:760px;
      margin:auto;
    }

    .lf-signature-name{
      margin-top:25px;
      font-family:"Cormorant Garamond",serif;
      font-size:29px;
      font-weight:700;
      color:var(--lf-black);
    }

    .lf-signature > span{
      display:block;
      margin-top:3px;
      color:var(--lf-gold-dark);
      font-size:11px;
      letter-spacing:3px;
      text-transform:uppercase;
      font-weight:700;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1100px){
      .lf-profile{
        grid-template-columns:1fr;
        max-width:800px;
      }

      .lf-name-panel{
        margin-top:-15px;
      }

      .lf-vertical-text{
        left:0;
      }

      .lf-information{
        grid-template-columns:1fr;
        max-width:800px;
      }
    }

    @media(max-width:700px){
      .lavish-founder{
        padding:65px 0 60px;
      }

      .lavish-founder::before{
        inset:10px;
      }

      .lf-container{
        width:91%;
      }

      .lf-header{
        margin-bottom:45px;
      }

      .lf-eyebrow{
        font-size:10px;
        letter-spacing:2.5px;
        gap:8px;
      }

      .lf-eyebrow span{
        width:30px;
      }

      .lf-header h2{
        font-size:52px;
        line-height:.95;
      }

      .lf-header h2 strong{
        display:block;
        margin:8px 0 0;
      }

      .lf-header p{
        font-size:14px;
        line-height:1.7;
      }

      .lf-profile{
        min-height:auto;
        margin-bottom:65px;
      }

      .lf-portrait-wrap{
        width:100%;
        height:500px;
      }

      .lf-portrait{
        width:min(76vw,330px);
        height:430px;
      }

      .ring-one{
        width:min(88vw,470px);
        height:min(88vw,470px);
      }

      .ring-two{
        width:min(74vw,390px);
        height:min(74vw,390px);
      }

      .lf-experience{
        right:8%;
        bottom:25px;
        width:115px;
        height:115px;
      }

      .lf-experience-number{
        font-size:34px;
      }

      .lf-experience-label{
        font-size:7px;
        letter-spacing:1.1px;
      }

      .lf-vertical-text{
        display:none;
      }

      .lf-name-panel{
        min-height:auto;
        padding:48px 27px;
      }

      .lf-name-number{
        font-size:42px;
        right:22px;
      }

      .lf-name-kicker{
        font-size:10px;
        letter-spacing:3px;
      }

      .lf-name-panel h3{
        font-size:48px;
      }

      .lf-institute{
        font-size:14px;
      }

      .lf-description{
        font-size:14px;
      }

      .lf-mini-credentials{
        gap:0;
      }

      .lf-mini-credentials > div{
        padding:0 8px;
      }

      .lf-mini-credentials strong{
        font-size:25px;
      }

      .lf-mini-credentials span{
        font-size:8px;
      }

      .lf-info-card{
        padding:30px 23px;
      }

      .lf-card-title h3{
        font-size:40px;
      }

      .lf-list p{
        font-size:13px;
      }

      .lf-expertise-grid{
        grid-template-columns:1fr;
      }

      .lf-expertise-item:nth-child(odd){
        border-right:0;
      }

      .lf-expertise-item span{
        font-size:13px;
      }

      .lf-values{
        grid-template-columns:1fr;
      }

      .lf-value{
        min-height:170px;
      }

      .lf-value:not(:last-child){
        border-right:0;
        border-bottom:1px solid var(--lf-line);
      }

      .lf-signature p{
        font-size:24px;
      }
    }



    /* ONLY RIGHT SIDE FOUNDER CONTENT */
.founder-content {
    width: 100%;
    max-width: 650px;   /* section wider */
    min-height: 650px;
    padding: 55px 80px;
    margin-left: 0;
}

/* Right side available space use करा */
.founder-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

/* Desktop */
@media (min-width: 1200px) {
    .founder-content {
        width: 650px;
        max-width: 650px;
    }
}


/* for big info section  */
/* ===== ONLY FOUNDER RIGHT NAME PANEL WIDTH ===== */

@media (min-width: 1200px) {

    .lf-profile {
        grid-template-columns: 570px minmax(650px, 1fr);
        max-width: 1150px;
        width: 100%;
    }

    .lf-name-panel {
        width: 100%;
        min-height: 650px;
        padding: 70px 75px;
    }

}


/* =====================================================
   LAVISH STUDENT SLIDER - SMOOTH IMAGE MOTION
===================================================== */

.lavish-slide img {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.lavish-slides.is-sliding img {
  animation: lavishImageSlide 0.7s ease;
}

@keyframes lavishImageSlide {
  0% {
    opacity: 0.35;
    transform: scale(0.97);
  }

  50% {
    opacity: 0.75;
    transform: scale(1.01);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}