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

body{
    scroll-behavior: smooth;
}
:root {
    --primary: #53e3e3;
    --light: #F6F7F8;
    --dark: #1A2A36;
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

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

.back-to-top:hover{
    background-color:#d32f2f;
}

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


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

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



/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  /* position: fixed;
  top: 0;
  left: 0; */
}

/* Topbar */
.topbar {
  background: #f44336;
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-top: 90px;
}

.top_notice_bar {
  background-color: #d32f2f;
}

.top_notice {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}

.notice_heading {
  margin-right: 8px;
  font-weight: bold;
}

.notice_text marquee {
  color: #fff;
}

/* Branding */
.branding {
  padding: 15px 0;
  background-color: #fff;
}

.logo_img {
  height: 60px;
  object-fit: contain;
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navmenu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #f44336;
}

.btn-book-a-table {
  background-color: #f44336;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  
}




.hero-background {
  background: url('../img/backgroundimages/bg01.jpg') no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 1;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 800px;
  color: white;
  z-index: 2;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content span {
  color: #f44336; 
}

.hero-content p {
  font-size: 1.1rem;
  color: #ddd;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-btn {
  background-color: #e53935;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #b71c1c;
}


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

.text-welcome {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navmenu {
    display: none;
   
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .navmenu.active {
    display: flex;
  }


  /* .mobile-nav-toggle {
    display: inline-block;
    color: #333;
  } */

  .btn-book-a-table {
    display: none;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

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

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}





/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

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

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


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

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

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}




/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

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

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

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


 /* Notice Bar Styles */
.top_notice_bar {
    position: relative;
    color: white;
    width: 100%;
    background: rgb(35, 35, 35); 
    padding: 5px 10px;
}

.top_notice {
    display: flex;
    align-items: center;  
    gap: 10px; 
    white-space: nowrap; 
    overflow: hidden;
}


.notice_heading {
    flex-shrink: 0; 
    font-size: 14px; 
}


.notice_text {
    flex-grow: 1; 
    overflow: hidden;
    color: black !important;
}




/* end notice bar */


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

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.owl-carousel-inner {
    position: absolute;
    z-index: 2; 
}


/* logo */
.logo-img {
    max-height: 80px; 
    width: auto; 
}

.text_gray{
    color: #9B9B9B;
}

.text_green{
    color:#50dcd5 ;
}

.background_green{
    background-color: #ed0909;
}

.button_01{
    background-color: #50dcd5;
    border: 0px;
}
.button_01:hover{

    background-color: #50dcd5;
}

.custom-heading {
    font-family: 'Poppins', sans-serif; 
    font-size: clamp(2rem, 5vw, 3.8rem); 
    font-weight: 700; 
}

.no-underline{
    text-decoration: none;
}

/* General Navbar Styling */
.navmenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
.logo_img {
  height: 60px;
}

