/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --black-color: #000000;

  --primary-color: #2a2a2a;
  --secondary-color: #FFEDB1;
  --tertiary-color: #FFC2AF;

  --section-bg-color: #FCF6E3;
  --transparent-bg-color: rgba(255, 255, 255, 0.65);

  --section-bg-gradient-1: linear-gradient(to right, #FFEDB1, #FCF6E3);
  --section-bg-gradient-1-alt: linear-gradient(to top left, #FFEDB1, #FCF6E3);
  --section-bg-gradient-2: linear-gradient(to right, #FCF6E3, #FFB5A2);
  --section-bg-gradient-3: linear-gradient(to bottom right, #FFB5A2, #FFEDB1);

  --custom-btn-bg-color: var(--white-color);

  --p-color: var(--black-color);
  --font-size-small: 0.9rem;
  --font-size-large: 1.2rem;
  --menu-font-size: 1.1rem;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 500;
  --font-weight-bold: 700;

  --body-font-family: 'Roboto', sans-serif;

}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--p-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-text {
  font-size: var(--font-size-small);
}

.large-text {
  font-size: var(--font-size-large);
}

.glass {
  border: 0;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-bg-1 {
  background: var(--section-bg-gradient-1);
}

.section-bg-1-alt {
  background: var(--section-bg-gradient-1-alt);
}

.section-bg-2 {
  background: var(--section-bg-gradient-2);
}

.section-overlay {
  background-color: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.section-overlay+.container {
  position: relative;
  z-index: 22;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 1px solid transparent;
  border-radius: var(--border-radius-large);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.5s;
  padding: 12px 28px;
}

.custom-btn.active,
.custom-btn.focus,
.custom-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: var(--black-color);
}

.navbar-nav .custom-btn {
  border-color: transparent;
}

.navbar-nav .custom-btn.active,
.navbar-nav .custom-btn.focus,
.navbar-nav .custom-btn:hover {
  transform: scale(1.1);
}

.hero-section .custom-btn {
  background: var(--secondary-color);
}

.hero-section .custom-btn.active,
.hero-section .custom-btn.focus,
.hero-section .custom-btn:hover {
  background: var(--secondary-color);
  border-color: var(--black-color);
}


/*---------------------------------------
  CUSTOM VIDEO              
-----------------------------------------*/

.custom-video-container {
  position: relative;
  max-width: 350px;
  max-height: 350px;
  margin: 0
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgb(255, 194, 176));
  border-radius: var(--border-radius-medium);
  bottom: 0;
  height: auto;
  padding: 20px;
  color: var(--white-color);
  transition: opacity 0.5s ease-in-out;
  max-width: 350px;
  max-height: 350px;
  font-family: lato, sans-serif;
}

.video-overlay:hover {
  opacity: 0.8;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 999998;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 15px;
}

.navbar {
  background: transparent;
  z-index: 999998;
  padding-top: 10px;
}

.navbar .container {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-medium);
  padding: 15px;
  min-height: 100px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar-brand:focus {
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
  width: 64px;
  height: 64px;
  margin-right: 15px;
}

@media screen and (max-width: 1199px) {
  .navbar .navbar-brand-image {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    /* display: none; */
  }
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-item {
  margin: 10px 16px;
  align-self: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  text-align: center;
  height: 100%;
  width: 100%;
  margin: auto 0;
  padding: 0;
}

@media screen and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    margin: 10px 8px;
  }
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
}
.navbar-nav .nav-link.active{
  color: var(--secondary-color);
}

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

.navbar .dropdown-menu {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--p-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  Animation        
-----------------------------------------*/

.fade-in {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.fade-up {
  opacity: 0;
  transform: translateY(2.75vw);
  transition: all 1s ease-in-out;
}

.fade-right {
  opacity: 0;
  transform: translateX(-2.75vw);
  transition: all 1s ease-in-out;
}

.fade-left {
  opacity: 0;
  transform: translateX(2.75vw);
  transition: all 1s ease-in-out;
}

.fade-in.visible,
.fade-up.visible,
.fade-right.visible,
.fade-left.visible {
  opacity: 1;
  transform: translate(0, 0);
}



/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--black-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
  height: 100vh;
}

.hero-section::after {
  background-color: var(--transparent-bg-color);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px);
  content: "";
  position: absolute;
  top: 52%;
  left: 51%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 300px;
  height: 400px;
  pointer-events: none;
}

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

.hero-section .container h1  {
  font-size: 2.5rem;
}

.hero-section .container h2  {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
}

@media screen and (max-width: 767px) {
  .hero-section .container h1 {
    font-size: 2rem;
  }
  .hero-section .container h2 {
    font-size: 1.25rem;
  }
  
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  position: relative;
  display: flex;
  align-items: center;
}

.about-section .btn.custom-btn {
  display: block;
}

.about-section h6 {
  color: var(--secondary-color);
}


/*---------------------------------------
  QUALIFICATION              
-----------------------------------------*/
.qualification-section {
  position: relative;
  display: flex;
  align-items: center;
}

.qualification-section .portfolio-img-wrap {
  position: relative;
}

.qualification-section .portfolio-img-wrap .glass {
  border: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.qualification-section  .portfolio-img {
  border-radius: var(--border-radius-medium);
}

.qualification-section .certification-logo {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 10; 
  width: 30%;
  padding: 10px;
  border-top-left-radius: var(--border-radius-medium);
  border-bottom-right-radius: var(--border-radius-medium);
}

.qualification-section .card {
  padding: 1.5rem;
  border-radius: var(--border-radius-medium);
}

.qualification-section .cards .glass {
  border: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.5s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
}

.qualification-section .cards .glass:hover {
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}



/*---------------------------------------
  COACHING              
-----------------------------------------*/
.coaching-section {
  position: relative;
  display: flex;
  align-items: center;
}


/*---------------------------------------
  TESTEMONIALS              
-----------------------------------------*/
.testimonials-section {
  position: relative;
  display: flex;
  align-items: center;
}

#testimonialCarousel .carousel-inner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-medium);
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.9);
}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.faq-section {
  background-image: url('../images/colourful-clouds.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.faq-block-wrap {
  border-radius: var(--border-radius-medium);
  padding: 3rem;
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/

.popup {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  width: 750px;
  max-width: 90%;
}

.booking-form-wrap {
  border: 1px solid var(--black-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: -0px;
  right: 20px;
  font-size: 3rem;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: var(--black-color);
  text-decoration: none;
  cursor: pointer;
}

.booking-form {
  padding: 55px 65px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  border-color: transparent;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

@media screen and (max-height: 760px) {
  .custom-form .form-control {
    margin-bottom: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

@media screen and (max-height: 560px) {
  .custom-form .form-control {
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .custom-form p {
    display: none;
  }

  .custom-form h2 {
    font-size: 28px;
  }
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border: 1px solid black;
}

.custom-form .form-label {
  color: var(--p-color);
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  /* border: 1px solid black; */
  border-color: transparent;
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  /* background: var(--transparent-bg-color); */
  border: 1px solid black;
  color: var(--p-color);
}

.booking-form .form-control {
  color: var(--p-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
  color: var(--p-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--p-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  padding-top: 40px;
}

.site-footer-main p {
  font-size: var(--footer-font-size);
}

.site-footer-link {
  transition: all 0.3s;
}

.site-footer-link:hover {
  text-decoration: underline;
}

.copyright-text {
  font-size: var(--smaller-font-size);
}

/* Default styles for larger screens */
.footer-bottom {
  /* Adjust height if needed to accommodate both texts */
  /* min-height: 2em; */
  margin-bottom: 0.5em;
}

.site-footer-link-right,
.site-footer-link-left {
  position: absolute;
  top: 0;
  text-decoration: underline;
  color: inherit;
}

.site-footer-link-right {
  right: 0;
}

.site-footer-link-left {
  left: 0;
}

@media (max-width: 480px) {

  .site-footer-link-right,
  .site-footer-link-left {
    position: static;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  .navbar-brand,
  .navbar-brand:hover {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .navbar-brand-image {
    display: inline-block;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: 20px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-item .custom-btn {
    margin-top: 8px;
  }

  .faq-section {
    background-attachment: scroll;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    padding: 35px;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .custom-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .faq-block-wrap {
    padding: 20px;
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  .hero-section::after {
    width: 275px;
    height: 275px;
    left: 54%;
  }

  .booking-form {
    padding: 35px;
  }
}
