/* Fonts */
:root {
  --default-font: 'Bricolage Grotesque', sans-serif;
  --heading-font: 'Bricolage Grotesque', sans-serif;
  --nav-font: 'Bricolage Grotesque', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f6f4ef; /* Background color for the entire website, including individual sections */
  --default-color: #3a3a3a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3a3a3a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff3131; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff3131; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #556270; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff3131; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #222222;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

.sem-dark-background {
  --background-color: #060606cf;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #bfbfbf94;
  padding: 0px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  

  .header .btn-getstarted {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: #ffffffeb;
  --heading-color: #3c3c3c;
  --nav-color: #000;
  --nav-hover-color: #fb0303;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #000;
  font-size: 14px;
  position: relative;
  background-image: url('../img/hero-carousel/slider-1.jpg'); /* Add the image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 67%); /* Adjust opacity (0 = transparent, 1 = solid) */
}

.footer * {
  position: relative;
  z-index: 2; /* Ensures text and content stay visible */
}

.footer .footer-top {
  padding-top: 70px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  opacity: inherit;
    color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
  opacity: inherit;
    color: #fff;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  opacity: inherit;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 20px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 10px 0px;
  position: relative;
  display: flex;
  background-color: #000;
  border-bottom: 1px solid #fff;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: #000;
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.foot-menu {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
  padding-bottom: 15px;
}

.foot-menu a {
  color: #fff;
  margin-left: 30px;
  font-size: 14px;
}

.phone-icon {
  position: fixed;
  bottom: 30px;
  right: 20px;
  color: #ffffff;
  background-color: #000000;
  border: 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  z-index: 9;
}
.phone-icon:hover {
  color: #ffffff;
  background-color: #ff3131;
}

.get-in-touch {
  position: fixed;
  bottom: 20em;
  right: -45px;
  background: #ff3131;
  color: #fff;
  border: 1px solid #ff3131;
  border-top: none;
  padding: 10px 20px;
  transform: rotate(90deg);
  border-radius: 0px 0px 15px 15px;
  z-index: 9;
}

.get-in-touch:hover {
  background: #fff;
  color: #ff3131;
  border: 1px solid #ff3131;
  border-top: none;
}


@media screen and (max-width: 768px) {
  .footer {
    padding: 0 20px;
}
.footer-contact {
  padding-bottom: 15px;
}
.foot-menu {
  text-align: right;
  display: flex;
  justify-content: space-around;
  align-content: flex-end;
  align-items: flex-end;
  padding-bottom: 15px;
}
.foot-menu a {
  color: #fff;
  margin-left: 0px;
  font-size: 14px;
}
.footer-copy {
  text-align: center;
}
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  bottom: 95px;
  right: 20px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media only screen and (max-width: 786px) {

  .page-title h1 {
    font-size: 35px;
  }
}

/* inner sectin */

.inner-section .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.inner-section .main-title {
  color: #3a3a3a;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 30px;
}

.inner-section .title-description {
  color: #3a3a3a;
  margin: 0px 0px 1rem;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.btn-bookSpace {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #ff3131;
  background: #ff3131;
  color: #fff;
}

.btn-bookSpace:hover {  
  border: 2px solid #ff3131;
  background: #fff;
  color: #ff3131;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 10px 0;
  background: #000;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: #fff;
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, #ffffff, #ffffff00 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 95vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 140px 0 50px 0;
}

.avatars .img-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: -10px;
  border: 1px solid #ffffff2e;
  box-shadow: 0 2px 4px rgb(74 74 74 / 60%);
  position: relative;
}

.approved-text {
  font-size: 14px;
  margin-left: 20px;
  color: #ffffff;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 10px 60px 10px;
  }
  .hero {
    min-height: 90vh;
  }
}

.hero .carousel {
  width: 100%;
  min-height: calc(92vh - -49px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}



.hero h5 {
  animation: fadeInDown 1s both;
}

.hero h2 {
  font-size: 78px;
  font-weight: 700;
  animation: fadeInDown 2s both;
}

.hero p {
  animation: fadeInDown 3s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 31px;
  }
}

ol, ul {
  padding-left: 1rem;
}

ul {
  list-style-type: circle;
}


.hero .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #fbfbfb;
  background: #ffffff;
  color: #000;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  border: 2px solid #ff3131;
  background: #ff3131;
  color: #fff;
}


.hero .info .btn-book-space {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ff3131;
  background: #ff3131;
  color: #fff;
  animation: fadeInUp 1s both 0.4s;
}

.hero .info .btn-book-space:hover {  
  border: 2px solid #fff;
  background: #fff;
  color: #ff3131;
}



.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/* about */

.about-text {
  padding-left: 4rem;
}

.about-text .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.about-text .main-title {
  color: #3a3a3a;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 30px;
}

.about-text .title-description {
  color: #3a3a3a;
  margin: 0px 0px 1rem;
}

.btn-about {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 25px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #ff3131;
  background: #ff3131;
  color: #fff;
}

.btn-about:hover {
  border: 2px solid #ff3131;
  background: #fff;
  color: #ff3131;
}


@media only screen and (max-width: 786px) {
  .about-text {
    padding-left: 1rem;
    padding-top: 40px;
}
.about-text .main-title {
  font-size: 30px;
}
}

/* space section */

.space {
  background: #000;
}


.space .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.space .main-title {
  color: #ffffff;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 30px;
}

.space .title-description {
  color: #ffffff;
  margin: 0px 0px 1rem;
}


.space .btn-section {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: center;
}


.space .btn-section .btn-Space {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ff3131;
  background: #ff3131;
  color: #fff;
}

.space .btn-section .btn-Space:hover {  
  border: 2px solid #000;
  background: #000;
  color: #fff;
}

.card small i{
  color: #ff3131;
  margin-right: 10px;
}

.booknow-btn {
  background-color: #000000;
  color: #fff;
  border: 1px solid #000000;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.booknow-btn:hover {
  background-color: #ff3131;
  color: #fff;
  border: 1px solid #ff3131;
}

.space-inner {
  background: #fff;
}

@media only screen and (max-width: 786px) {
.space .main-title {
  font-size: 30px;
}
.space .btn-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
}

/* facilities  */


.facilities {
  background-color: #fff;
}


.facilities .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.facilities .main-title {
  color: #000;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}

.facilities .title-description {
  color: #000;
  margin: 0px 300px 50px 300px;
}


.facilities .card-custom {
  border: 2px solid #2900008f;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: transform 0.3s ease;
}


.facilities .card-custom:hover {
  transform: translateY(-5px);
  border: 2px solid #ff3131;
}


.facilities .card-icon {
  margin-bottom: 20px;
}

.facilities .card-icon img{
  height:59px; 
  width:59px;
}

.facilities .card-title {
  font-size: 19px;
  font-weight: 500;
  color: #000;
}

.facilities .card-text:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 786px) {
  .facilities .main-title {
    font-size: 30px;
  }
  .facilities .title-description {
    color: #000;
    margin: 0px 10px 50px 10px;
  }
  .facilities .card-custom {
    padding: 20px 10px;
  }
  }



/* gallery */

.gallery .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.gallery .main-title {
  color: #000;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}

.gallery .title-description {
  color: #000;
  margin: 0px 300px 50px 300px;
}

.gallery img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox.active {
  display: flex;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}


@media only screen and (max-width: 786px) {
  .gallery .main-title {
    font-size: 30px;
  }
  .gallery .title-description {
    margin: 0px 10px 50px 10px;
  }
  .gallery .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 20px;
    transition: 0.3s;
    font-size: 14px;
    color: #fff;
    margin: 0 10px;
    border-radius: 10px;
}
.gallery .thumb {
  width: 100%;
  margin-bottom: 15px;
}
  }

/* testimonials section */

.testimonials {
  background-color: #fff;
}

.testimonials .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.testimonials .main-title {
  color: #3a3a3a;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}

.testimonials .title-description {
  color: #3a3a3a;
  margin: 0px 300px 50px 300px;
}


.testimonials-section {
  padding: 50px 0;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-heading h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.testimonials-heading p {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
}

.testimonial-card h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-icon {
  font-size: 2rem;
  color: #ff5722;
  font-weight: bold;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.testimonial-profile img {
  width: 50px;
  height: 50px;
  object-fit: fill;
  border-radius: 50%;
  border: 1px solid #00000014;
  margin-right: 20px;
}

.testimonial-profile .name {
  font-weight: bold;
  color: #003c2f;
}

.testimonial-profile .role {
  font-size: 0.8rem;
  color: #666;
}

@media only screen and (max-width: 786px) {
  .testimonials .main-title {
    font-size: 30px;
  }
  .testimonials .title-description {
    margin: 0px 10px 50px 10px;
  }  
  }



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, #000000, #ff31315e 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}


.call-to-action .sub-headding {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;
  color: #f0efe6;
  margin-bottom: 20px;
}

.call-to-action .maintitle {
  color: #fff;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}


.call-to-action .play-button {
  width: 80px;
  height: 80px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  position: relative;
  text-decoration: none;
}

.call-to-action .play-button .play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid #ffffff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

@media only screen and (max-width: 786px) {
  .call-to-action .maintitle {
    font-size: 30px;
  }
}

/* faq */

.faq {
  background: #fff;
}

.faq-img {
  width: 100%;
  border-radius: 20px;
}

.faq-sec {
  margin-left: 70px;
}

.faq-sec .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.faq-sec .main-title {
  color: #3a3a3a;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}

.accordion-button {
  background-color: #fff;
  padding: 15px 0px;
  font-size: 21px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: #fff;
  padding: 15px 0px;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
}

.accordion-item {
  border: 1px solid #b3b3b3;
  margin-bottom: 15px;
}

@media only screen and (max-width: 786px) {
  .faq-sec .main-title {
    font-size: 30px;
  }
  .faq-sec .title-description {
    margin: 0px 10px 50px 10px;
  }
  .faq-sec {
    margin-left: 10px;
    margin-top: 40px;
}
.accordion-button {
  background-color: #f0efe6;
  padding: 15px 0px;
  font-size: 18px;
}
}
/* faq */

/* contact  */

.contact-section {
  border-radius: 8px;
  padding: 50px 50px;
  color: #ffffff;
  background-color: #000;
}

.contact-section .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-section .main-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}


.contact-section .form-label {
  font-size: 12px;
  font-weight: 500;
  color: #f9f7f2;
  /* Gray label color */
}
.contact-section input::placeholder {
  color: white;
}
.contact-section .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #C4C4C4;
  border-radius: 0;
  color: #ffffff;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 300;
}

::placeholder {
  color: #f9f7f2c4!important;
}

.contact-section .form-control:focus {
  box-shadow: none;
  border-color: #FF4C3B;
  /* Orange focus border */
}

.contact-section textarea {
  resize: none;
}

.contact-section .btn-submit {
  background-color: #FF4C3B;
  /* Bright orange */
  color: #ffffff;
  font-weight: bold;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.contact-section .btn-submit:hover {
  background-color: #E43D2B;
  /* Darker orange on hover */
  color: #ffffff;
}

.contact-section .map-frame {
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  margin-left: 50px;
}

.contact-section-inner .info-item {
  background-color: var(--surface-color);
  padding: 40px 20px 40px 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-section-inner .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact-section-inner .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-section-inner .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 17px;
  text-align: center;
}

@media only screen and (max-width: 786px) {
  .contact-section .main-title {
    font-size: 30px;
  }
  .contact-section .title-description {
    margin: 0px 10px 50px 10px;
  }
  .contact-section .map-frame {
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    margin-left: 0px;
    height: 350px;
}
.contact-section {
  border-radius: 0px;
  padding: 50px 20px;
}
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 250px;
  border-radius: 5px;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 25px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: var(--accent-color);
}

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a+a {
  margin-left: 8px;
}


.team .subheadding {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.team .main-title {
  color: #000;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}

/*
