
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Poppins",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #555555; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3fbbc0; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3fbbc0; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3fbbc0; /* 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: #f7fcfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #3fbbc0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;
}

/* 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);
}

ul {
  list-style: none;   /* removes bullet */
  margin: 0;          /* remove default left margin */
  padding: 0;         /* remove default left padding */
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}



.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
 height: 130px;
 
}

.header .logo img {
height: 100%;
width: 100%;
object-fit: cover;
margin-right: 8px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ac00c6;
  }

  .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;
    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: #ac00c6;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 38px;
    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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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: #ac00c6;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #ac00c6;
    color: white;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ac00c6;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ac00c6;
    color:white;
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }
}


@media (max-width: 1199px) {
  .header .logo {
 height: 90px;
 
}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, #ac00c6 50%, #45018c 50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}


@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: linear-gradient(45deg, #ac00c6, #45018c); 
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(70deg, #ac00c6, #45018c); 
  color: white;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background: url('../img/home-bann.jpg') no-repeat center center/cover;
  height: 75vh; /* Full viewport height */
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: white;
  font-family: "Lora", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Dark text shadow */
}
@media (max-width: 1000px) {
  .hero h1 {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .hero h1 {
    font-size: 25px;
  }
}

.hero p {
  font-size: 1.25em;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff6347;
  padding: 15px 30px;
  font-size: 1.2em;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e53e3e;
}





/*--------------------------------------------------------------
# Video-container
--------------------------------------------------------------*/

.video-container iframe {
  width: 100%;
  height: 400px;
}

.video-container h3{
  color: black;
  margin-bottom: 40px;
  font-size: 35px;
}
@media (max-width: 1000px) {
  .video-container{
    margin-top: 200px;
  }
}


@media (max-width: 699px) {
  .video-container h3{
   margin-bottom: 25px;
   margin-top: 20px;
    
  }
}
@media (max-width: 260px) {
  .video-container h3{
    font-size: 25px;
    margin-top: 90px !important;
    margin-bottom: 20px;
  }
}



@keyframes bottomToTop {
  0% {
      opacity: 0;
      transform: translateY(30px); /* Start below the container */
  }
  100% {
      opacity: 1;
      transform: translateY(0); /* End at the normal position */
  }
}

/* Apply animation to the text and iframe */
.animate-bottom-to-top {
  animation: bottomToTop 1s ease-out forwards;
}

/* Delay animation for different elements */
.animate-bottom-to-top:nth-child(1) {
  animation-delay: 0.2s;
}

.animate-bottom-to-top:nth-child(2) {
  animation-delay: 0.4s;
}
/*--------------------------------------------------------------
# custom-cards
--------------------------------------------------------------*/

@media (max-width: 1199px) {
  .custom-cards {
      min-height: 350px;
  }
}
.custom-cards {
  position: relative;
  min-height: 200px;
}

@media (max-width: 1199px) {
  .custom-cards .cards-container {
      position: static;
  }
}

.custom-cards .cards-container .card .card-body {
    padding: 20px;
    background: linear-gradient(45deg, #ac00c6, #45018c); /* Gradient mix of both colors */
    color: white;
  }


.custom-cards .cards-container {
  position: absolute;
  top: -40%;
  left: 0;
}
.cards h4{
  text-align: center;
  color: white;
}
.cards p{
  text-align: center;
  color: white;
  margin-bottom: 10px;
}

  .custom-cards .cards-container .card .card-body img {
  padding-bottom: 10px;
}

.book-now-button {
  background: linear-gradient(45deg, #ac00c6, #45018c); /* Gradient background */
  color: white; /* Ensuring the text is white */
  border: none; /* Removing border */
  transition: background 0.3s ease; /* Smooth transition on hover */
}

.book-now-button:hover {
  background: linear-gradient(45deg, #45018c, #ac00c6); /* Inverted gradient on hover */
}

.feature-box-icon{
  width: 50px;
 margin: auto;
 background-color: white;
 margin-bottom: 10px;
}


.feature-box-icon img {
height: 100%;
width: 100%;
object-fit: cover;

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: linear-gradient(45deg, #4e4d4e, #16121a); 
 
  font-size: 0.9em;
  margin-top: 50px;
  padding: 0;
  position: relative;
  clear: both;
}
#footer .footer-column-opening-hours .custom-info {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #bcbaba;
  font-size: 15px;
}

#footer .footer-column-opening-hours .custom-info {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #bcbaba;
  font-size: 15px;
}

.social-icons {
  margin: 0;
  padding: 0;
  width: auto;
}

#footer .social-icons li {
  margin: -1px 13px 0 0;
}
.social-icons li {
  display: inline-block;
  margin: -1px 1px 0 0;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
}
#footer .social-icons li a {
  width: 38px;
  height: 38px;
  line-height: 41px;
  font-size: 20px;
}

#footer .footer-logo{
  width: 150px;

}
#footer .footer-logo img{
  
  width: 100%;
 height: 100%;
  object-fit: cover;
  
}

#footer .nav-footer > ul {
  padding: 0;
}

#footer .nav-footer > ul li {
  list-style: none;
  font-size: 15px;
  line-height: 40px;
  padding-bottom: 10px;
}
#footer ul li a{
  color: #bcbaba;
  text-decoration: none;
  font-size: 17px;
}
#footer ul li a:hover{
  color: white;
}
#footer  h4{
  color: white;
  margin-bottom: 30px;
  font-size: 20px;
}
#footer ul{
  margin-bottom: 20px;
}
#footer .footer-copyright {
  border-top: 1px solid rgba(225, 225, 225, 0.1);
}
#footer .footer-copyright {
  background: linear-gradient(45deg, #ac00c6, #45018c); 
}
#footer .footer-copyright p {
  color: #bcbaba;
  margin: 0;
  padding: 0;
  text-align: center;
}
#footer p{
  color: white;
}

@keyframes fadeInUpShorter {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.fadeInUpShorter {
  animation: fadeInUpShorter 2s ease-out;
}

/* about,vision, mission */

.about h3,.vision h3,.mission h3{
  font-size: 30px;

}
.responsive-content{
  word-break: normal;
  overflow: hidden;
}