@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');




body
{
  font-family: 'Karla', sans-serif;
  font-weight: 400; /* regular weight */
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
}


h1, h2, h3, h4, h5, h6 {

  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

a
{
  text-decoration: none;
}
p
{
  margin-bottom: 0;
  color: #222;
  line-height: 1.6;
  font-size: 1.1rem;
}


/* ========== Color Variables ========== */
:root {
  --primary: #3B4A6B;
  --blue-color: #22B2DA;
  --yellow-color: #F0D43A;
  --red-color: #7d1724;
  --text-color: #222;
  --section-bg: radial-gradient(circle, #22b2da4d, #22b2da4d, #22b2da4d);
}

.gradient-text {
  background: linear-gradient(90deg, #3B4A6B, #22B2DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*loader CSS STart*/

/* Loader Styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.8s ease-out;
}

.loader-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: pulse 2s infinite ease-in-out;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.25);
}

.logo-loader-text {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-color) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.loader-text {
  color: white;
  margin-top: 10px;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}


.loader-progress {
  width: 280px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-color), var(--yellow-color));
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Pulsing Animation */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}



/* Responsive design */
@media (max-width: 768px) {
  .loader-logo {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 2.2rem;
  }

  .loader-text {
    font-size: 1.1rem;
  }
  .logo-loader-text
  {
    font-size: 1.5rem;
  }

}
/*loader CSS End*/

.container
{
  max-width: 1450px;
}

/*Header CSS Start*/

/* Top Bar Styles */
.top-bar {
  background: var(--yellow-color);
  color: white;
  padding: 8px 0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
}

.top-bar-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-contact-item i {
  color: white;
  font-size: 13px;
}

.top-bar-contact-item a
{
  color: white;
}
.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  color: white;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-size: 14px;
}

.top-bar-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive Top Bar */
@media (max-width: 992px) {
  .top-bar
  {
    display: none;
  }
}

.header {
  /*background: #0000006b;*/
  background: linear-gradient(135deg, rgba(0 0 0 / 56%) 0%, rgba(0 0 0 / 56%) 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
}

/*.header.transparent-inner-page
{
  position: relative;
  background: #000;
}*/

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  transition: all 0.3s ease;
}

.main-header
{
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001; /* Higher than .header to stay on top */
  transition: all 0.3s ease;
  padding: 10px 0;
}

.main-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  top: 0;
  position: fixed;
  width: 100%;
  background: #000;
  transition: all 0.4s ease;
}

.scrolled .logo-image {
  height: 65px;
  transition: all 0.4s ease;
}

.logo-image {
  height: 80px;
  width: auto;
  max-width: 180px;
  transition: all 0.4s ease;
}

.logo-container {
  border-radius: 5px;
  display: inline-block;
}

.logo {
  display: inline-block;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  position: relative;
  display: inline-block;
  margin: 0;
  color: #fff;
}


.logo-icon {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-color) 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 25px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(34, 178, 218, 0.3);
  position: relative;
  overflow: hidden;
}


/* Desktop Menu Styles */
.main-menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-logo
{
  margin-top: 15px;
  display: none;
}
.mobile-logo .logo-text
{
  color: var(--primary);
}
.top-bar-social.mobile
{
  display: none;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--text-color);
}

.top-bar-social.mobile a
{
  color: white;
  background: var(--primary);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
}

.menu-wrapper {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-wrapper > li {
  position: relative;
  margin: 0 12px;
}

.menu-wrapper > li > a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.menu-wrapper > li > a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--yellow-color);
  transition: width 0.3s ease;
}

.menu-wrapper > li > a:hover:after,
.menu-wrapper > li.current-menu-item > a:after {
  width: 100%;
}


/* Book Now Button */
.book-now-btn {
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  background: var(--blue-color);
}
.book-now-btn .button-icon {
  fill: #fff;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.book-now-btn:hover {
  transform: translateY(-5px);
}


.book-now-btn:hover .button-icon {
  transform: translateX(5px);
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 101;
  color: #fff;
}

.toggle-line {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--blue-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 0px 20px 20px;
    overflow-y: auto;
    z-index: 100;
  }

  .main-menu.active {
    right: 0;
  }

  .menu-wrapper {
    flex-direction: column;
  }

  .menu-wrapper > li {
    margin: 0 0 15px 0;
  }

  .menu-wrapper > li > a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
    color: var(--primary);
  }

  .header-actions {
    margin-left: auto;
    margin-right: 15px;
  }

/* Animate toggle to X when active */
.mobile-menu-toggle.active .toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
}

/*Header CSS End*/

/*Banner CSS Start*/

/* Hero Banner Styles */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  min-height: 100vh;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;  
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: zoomEffect 5s infinite alternate;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0 0 0 /56%) 0%, rgba(0 0 0 /56%) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.content-wrapper {
  width: 100%;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  width: 680px;
  background: linear-gradient(135deg, rgba(0 0 0 /56%) 0%, rgba(0 0 0 /56%) 100%);
  padding: 10px;
  border-radius: 10px;
}

.title-line {
  display: block;
  animation: slideUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.title-line:nth-child(1) {
  animation-delay: 0.3s;
}

.title-line:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 800px;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  line-height: 1.6;
  animation: fadeInRight 1s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.button-wrapper {
  margin-top: 20px;
  animation: fadeIn 1s ease-out 1s forwards;
  opacity: 0;
}

.slide-button {
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}


.slide-button .button-icon {
  fill: #fff;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.slide-button:hover {
  color: #fff;
  transform: translateY(-5px);
}


.slide-button:hover .button-icon {
  fill: #fff;
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  text-align: center;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}

.wheel {
  width: 6px;
  height: 10px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 3px;
  margin-top: 8px;
  animation: scrollWheel 2s infinite;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollArrow 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scrollArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-10px);
  }
  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* Slick Slider Custom Styles */
.slick-dots {
  position: absolute;
  bottom: 100px;
  left: 50px;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  z-index: 10;
  display: none !important;
}

.slick-dots li {
  margin: 10px 0;
  position: relative;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slick-dots li button:before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
  background: var(--primary);
  border-color: var(--primary);
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

.slick-dots li:hover button:before {
  opacity: 1;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(5px);
}

.slick-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.slick-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transition: all 0.3s ease;
}

.slick-prev {
  left: 30px;
}

.slick-prev:before {
  transform: translate(-30%, -50%) rotate(45deg);
}

.slick-next {
  right: 30px;
}

.slick-next:before {
  transform: translate(-70%, -50%) rotate(-135deg);
}

/* Responsive Styles */

@media (max-width: 992px) {
  .hero-banner {
    min-height: 55vh;
  }

  .slide-title {
    font-size: 2.2rem;
    max-width: 100%;    
  }

  .slick-dots {
    left: 20px;
    bottom: 80px;
  }

  .slick-arrow {
    width: 50px;
    height: 50px;
  }
  .slick-dots {
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    width: auto;
  }

  .slick-dots li {
    margin: 0 8px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 55vh;
  }

  .slide-title {
    font-size: 2rem;
  }


  .slide-button {
    padding: 15px 30px;
  }



  .slick-arrow {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    min-height: 55vh;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-subtitle {
    font-size: 0.9rem;
  }

  .slide-button {
    padding: 6px 20px;
    font-size: 1rem;
  }

  .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .slick-arrow:before {
    width: 15px;
    height: 15px;
  }
}

/*Banner CSS End*/

/*Page Breadcrumb CSS START*/

/* Breadcrumb Banner Styles */
.breadcrumb-banner {
  height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 150px;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;            
  z-index: -2;
}

.banner-background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* gradient only at bottom: transparent on top to primary color at bottom */
  background: linear-gradient(to top, var(--primary), rgba(59 74 107 / 0.44) 70%, transparent 100%);
  z-index: -1;
}


.banner-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 20px;
  font-size: 1rem;
}

.breadcrumb li {
  margin: 0 8px;
  display: flex;
  align-items: center;
}

.breadcrumb li:after {
  content: '/';
  margin-left: 12px;
  color: var(--blue-color);
  font-weight: bold;
}

.breadcrumb li:last-child:after {
  content: '';
  margin: 0;
}

.breadcrumb a {
  color: var(--yellow-color);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb a i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.breadcrumb .current {
  color: white;
  font-weight: 500;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.page-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--blue-color);
  margin: 0 auto 25px;
  border-radius: 2px;
}


/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .breadcrumb-banner {
    height: 200px;
    padding-top: 90px;
  }

  .page-title {
    font-size: 2rem;
  }

  .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
  }

  .breadcrumb li {
    margin: 5px 8px;
  }
}

@media (max-width: 480px) {

  .page-title {
    font-size: 1.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }
}

/*Page Breadcrumb CSS END*/

/*Home About Us Section  CSS Start*/

/* About Us Section Styles */
.about-us-section {
  padding: 60px 0 60px 0;
  background: #fff;
  position: relative;
}

.container {
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-column {
  position: relative;
}

.image-stack {
  position: relative;
  width: 100%;
}

.back-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.back-image:hover
{
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.front-image {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  bottom: 10px;
  right: 10px;
  z-index: 2;
  transition: all 0.3s ease;
  background: var(--yellow-color);
  padding: 14px;
}
.front-image h4
{
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.content-column {
  padding-right: 40px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
  background: white;
  width: max-content;
  padding: 5px 17px;
  border-radius: 15px;
}

.section-title {
  background: linear-gradient(90deg, var(--primary), var(--blue-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.2rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

.about-description {
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.features-container {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  gap: 10px;
  padding: 5px 0;
}

.feature-item:hover
{
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-color);  
}
.feature-icon i
{
  color: #fff;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.1;
  margin: 0;
  color: #000;
  font-weight: 700;
}


/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-stack {
    margin: 0 auto;
  }

  .content-column {
    padding-right: 0;
  }

}

@media (max-width: 768px) {
  .about-us-section {
    padding: 20px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }
  .front-image h4
  {
    font-size: 14px;
  }

}

@media (max-width: 576px) {
  .about-us-section {
    padding: 20px 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
  }

  .about-description,
  .feature-text {
    font-size: 0.9rem;
  }

  .feature-icon {
    margin-right: 0;
  }

  .cta-button {
    padding: 14px 30px;
  }
}

/*Home About Us Section  CSS End*/



/*Home About Us Section End*/

/*CTA Section CSS START*/

/* Luxury CTA Styles */
.luxury-cta {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 20px 0;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
  border-radius: 15px;
}

.cta-container {
  width: 100%;
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 15px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 9;
}

.cta-text-wrapper {
  flex: 1;
}

.cta-title {
  font-size: 2.4rem;
  color: white;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
  padding-left: 20px;
}

.cta-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--blue-color);
}

.cta-button-wrapper {
  flex-shrink: 0;
}

.cta-button {
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
  background: var(--blue-color);
  border: none;
}
.white-cta-button
{
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.cta-button .button-icon {
  fill: #fff;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}
.white-cta-button .button-icon {
  fill: #fff;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.cta-button:hover {
  transform: translateY(-5px);
}
.white-cta-button:hover {
  transform: translateY(-5px);
}


.cta-button:hover .button-icon {
  transform: translateX(5px);
}
.white-cta-button:hover .button-icon {
  transform: translateX(5px);
}

.submit-btn.cta-button
{
  float: right;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .luxury-cta {
    height: 200px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 16px 40px;
  }
}

@media (max-width: 768px) {
  .luxury-cta {
    height: 300px;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .cta-title {
    font-size: 2.2rem;
    padding-left: 0;
    text-align: center;
  }

  .cta-title::before {
    display: none;
  }

}

@media (max-width: 576px) {
  .luxury-cta {
    height: 250px;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .content-text h3
  {
    font-size: 18px;
  }

  .cta-button {
    padding: 6px 20px;
    font-size: 1rem;
  }

  .cta-button .button-icon {
    width: 20px;
    height: 20px;
  }
}

/*CTA Section CSS End*/

/*Counter Section CSS Start*/

.stats-section {
  padding: 20px 0;
  color: white;
  position: relative;
  overflow: hidden;
}


.container {
  position: relative;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-item {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  border: 1px solid var(--primary);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  position: relative;
}

.stat-icon {
  width: 100%;
  height: 100%;
  background: var(--yellow-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.stat-icon i {
  font-size: 24px;
  color: #fff;
}


.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}

.stat-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--section-bg);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: 0;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/*Counter Section CSS End*/

/*Why Choose Us CSS Start*/

.why-choose-us {
  padding: 40px 0;
  background: var(--section-bg);
}


.section-content-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.content-left {
  flex: 1;
}

.image-right {
  flex: 1;
  position: relative;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.feature-image:hover
{
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.section-header {
  margin-bottom: 40px;
}


.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.reason-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
}

.reason-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #fdede7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon i {
  color: var(--primary);
}

.reason-content {
  flex: 1;
}

.reason-title {
  font-size: 18px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 600;
}

.reason-text {
  color: #222;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-content-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .image-right {
    width: 100%;
  }

  .section-header,
  .section-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }


  .why-choose-us {
    padding: 20px 0;
  }
}

/*Why Choose Us CSS End*/

/*Portfolio Section CSS Start*/

.hotel-portfolio
{
  padding: 20px;
}

/* Tabs Navigation */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
  border-radius: 5px;
}


.tab-btn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  background: var(--yellow-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

/*.tab-btn.active, .tab-btn:hover {
color: var(--primary);
}*/

.tab-btn.active:after, .tab-btn:hover:after {
  width: 100%;
}

/* Hotel Grid */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.hotel-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeIn 0.5s ease;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hotel-image {
  height: 380px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-details {
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.hotel-details p
{
  margin-bottom: 20px;
}

.hotel-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.hotel-address {
  color: #111111;
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
}

.hotel-address i {
  margin-right: 12px;
  color: var(--primary);
  margin-top: 3px;
}

.hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.hotel-call-icon
{
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
}
.hotel-call-icon i
{
  background: var(--yellow-color);
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}
.book-button
{
  background: var(--blue-color);
  color: #fff;
  padding: 12px 14px;
  font-weight: 700;
  border-radius: 4px;
}
.book-button .button-icon {
  fill: #fff;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}
.hotel-footer
{

}

.load-more-container
{
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.load-more-btn
{
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  background: var(--blue-color);
  border: none;

}
/* Responsive */
@media (max-width: 768px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    margin: 5px 0;
    font-size: 1rem;
    padding: 8px 15px;
  }
}

/*Portfolio Section CSS End*/

/*Home Gallery Section CSS Start*/

.square-gallery {
  padding: 20px 0;
  color: var(--text-color);
}


.hover-label {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  color: white;
  background: rgba(0,0,0,0.6);
  font-size: 17px;
  text-align: center;
  padding: 4px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


.hidden-image {
  display: none;
}

#loadMoreBtn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: var(--blue-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.square-item:hover .hover-label,
.square-item:focus .hover-label {
  opacity: 1;
  pointer-events: auto;
}

/* Lightbox label style */
.lightbox-label {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.lb-data .lb-caption {
  font-size: 20px;
}


.square-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.square-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1/1; /* Ensures square format */
}

.square-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.square-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.square-item:hover img {
  transform: scale(1.05);
}

.square-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.square-item:hover .caption {
  opacity: 1;
}


@media (max-width: 768px) {
  .square-gallery {
    padding: 20px 0;
  }


  .square-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}


/*Home Gallery Section CSS End*/


/*Contact Us Page CSS Start*/

.contact-section {
  position: relative;
  padding: 20px 0;
}

.contact-container {
  margin: 0 auto;
  padding: 0 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.section-header {
  text-align: left;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-text h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.contact-text a, .contact-text address {
  color: var(--text-color);
  text-decoration: none;
  font-style: normal;
  transition: color 0.3s;
  margin-bottom: 0;
}

.contact-text a:hover {
  color: var(--primary);
}

.social-heading
{
  font-weight: 700;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--blue-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.contact-map {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-wrapper.mobile
{
  display: none;
}

@media(max-width: 992px)
{
  .contact-form-wrapper
  {
    display: none;
  }
  .contact-form-wrapper.mobile
  {
    display: block;
  }

}

.contact-form {
  background: white;
  padding: 20px 0;
  border-radius: 8px;
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}
.form-group textarea {
  height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}


@media (max-width: 992px) {
  .contact-row {
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .contact-map {
    min-height: 300px;
    order: 2;
  }

  .contact-details-wrapper {
    order: 1;
  }

  .section-header {
    margin-bottom: 20px;
  }


  .contact-item {
    align-items: center;
  }

  .social-links {
    justify-content: center;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
  .contact-form
  {
    /*padding: 15px;*/
  }
}

/*Contact Us Page CSS End*/

/*About Us Page CSS Start*/

.about-section {
  padding: 20px 0;
  color: var(--text-color);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--yellow-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  color: #fff;
}

.card-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
}

.card-body {
  padding: 25px;
}

.card-body p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
  }
}


.feature-section {
  padding: 20px 0;
}


.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}



.feature-description {
  color: #222;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.feature-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-button:hover {
  background: #d1450f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(236, 78, 17, 0.3);
}

.feature-button svg {
  fill: currentColor;
}

.feature-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .feature-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-text {
    max-width: 100%;
    order: 1;
    font-size: 0.8rem;
  }

  .feature-image {
    order: 2;
    margin: 0 auto;
  }



  .feature-button {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .feature-section {
    padding: 20px 0;
  }

}

/*About Us Page CSS End*/


/*Services Page CSS START*/


.services-section {
  padding: 20px 0;
  color: var(--text-color);
}

.services-tabs {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid var(--primary);
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tab-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  gap: 10px;
  font-weight: 600;
}
.services-tabs .tab-btn
{
  padding: 20px;
}

.tab-btn i {
  transition: all 0.3s ease;
}

.tab-btn span {
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}


.tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow-color);
}

.tab-btn:hover {
  background: var(--section-bg);
  transition: all 0.3s ease;
}

.tab-btn.active i,
.tab-btn.active span {
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}

.tab-content {
  display: none;
  padding: 20px;
}

.tab-content.active {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.content-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tab-content.active .content-image:hover img {
  transform: scale(1.03);
}

.content-text {
  flex: 1;
}

.content-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 600;
}

.content-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.content-text ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.content-text li {
  margin-bottom: 10px;
  position: relative;
}

.content-text li:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--yellow-color);
  border-radius: 50%;
}
.content-text li::marker
{
  content: none !important;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .tab-content.active {
    flex-direction: column;
  }

  .content-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    padding: 10px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }

  .tab-btn svg {
    margin-bottom: 0;
  }

  .services-section {
    padding: 20px 0;
  }


  .tab-content {
    padding: 30px 20px;
  }
}

/*Services Page CSS End*/

/*Under Construction Section CSS Start*/

.construction-showcase {
  background: var(--section-bg);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.construction-showcase .section-header {
  text-align: left;
  margin-bottom: 140px;
}

.title {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}


.construction-showcase .image-stack {
  position: relative;
  height: 500px;
  margin: 0 auto;
}

.construction-showcase .image-back,
.image-overlay-1,
.image-overlay-2,
.image-overlay-3 {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.image-back {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-overlay-1 {
  width: 45%;
  height: 60%;
  top: -110px;
  right: -30px;
  z-index: 2;
}

.image-overlay-2 {
  width: 40%;
  height: 50%;
  bottom: -30px;
  left: -20px;
  z-index: 3;
}

.image-overlay-3 {
  width: 35%;
  height: 45%;
  bottom: 10px;
  right: -30px;
  z-index: 4;
}

.construction-showcase .image-stack .construction-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover Effects */
.construction-showcase .image-stack:hover .image-overlay-1 {
  transform: rotate(0) translateX(-10px);
}

.construction-showcase .image-stack:hover .image-overlay-2 {
  transform: rotate(0) translateY(10px);
}

.construction-showcase .image-stack:hover .image-overlay-3 {
  transform: rotate(0) translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .construction-showcase .image-stack {
    height: 400px;
  }

  .image-overlay-1,
  .image-overlay-2,
  .image-overlay-3 {
    width: 50%;
  }
}

/*Under Construction Section CSS End*/


/*Brand Partner CSS Start*/

.brand-partners-section {
  padding: 40px 0;
  text-align: center;
}
.brand-partners-container
{  
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 10px;
  background: aliceblue;
}

.brands-slider {
  margin: 0 auto;
  padding: 20px;
  border-radius: 15px;
}

.brand-item {
  padding: 0 15px;
  outline: none;
}

.brand-logo {
  width: 100%;
  height: 55px;
  object-fit: contain;
  margin: 0 auto;
  transition: all 0.3s ease;
}


/*Brand Partner CSS END*/

/*Footer CSS Start*/

.footer {
  color: white;
  background: #000;
  padding: 60px 0 20px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  border-radius: 15px;
}

.footer-logo-text
{
  padding: 10px;
  background: #fff;
  border-radius: 4px;
  width: fit-content;
}

.footer-about p {
  color: #fff;
  margin-top: 10px;
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--yellow-color);
}
.footer-links
{
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.contact-info {
  display: flex;
  align-items: flex-start;
}
.contact-info p
{
  color: #fff;
}

.contact-info i {
  margin-right: 10px;
  margin-top: 5px;
}
.contact-info a
{ 
  color: white;
}
.contact-info .contact-item
{
  background: transparent;
  padding: 0;
  gap: 0;
}
.contact-info .contact-item a
{
  margin-bottom: 1rem;
}

.social-icons a {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}
.copyright p
{
  color: #fff;
}
.copyright a
{
  color: #fff;
  font-weight: bold;
}

/*Back to top*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}
/*Footer CSS End*/

/*All Responsive CSS*/

@media(max-width: 1466px)
{
  .cta-container
  {
    margin: 0 20px;
  }
}
@media(max-width: 400px)
{
  .hotel-call-icon
  {
    font-size: 14px;
    gap: 5px;
  }
  .hotel-call-icon i
  {
    padding: 8px;
  }
  .book-button
  {
    padding: 8px 10px;
    font-size: 14px;
  }
  .hotel-address
  {
    font-size: 15px;
  }
}
@media(max-width: 600px)
{
  .book-now-btn
  {
    display: none;
  }
}
@media(max-width: 768px)
{

  .footer-heading
  {
    font-size: 18px;
  }

  .stats-grid
  {
    gap: 10px;
  }
  .stat-item
  {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 10px;
    justify-content: flex-start;
  }
  .stat-number
  {
    margin-bottom: 0;
  }
  .stat-icon-wrapper
  {
    margin: 0;
  }
  .card-header
  {
    padding: 15px;
  }
  .hotel-details
  {
    padding: 15px;
  }
}
@media(max-width: 1059px)
{
  .logo-text
  {
    font-size: 20px;
  }
  .slide-title
  {
    font-size: 1.3rem;
    font-weight: 600;
    width: fit-content;
  }
  .logo-icon
  {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .logo-container
  {
    padding: 5px;
  }

}
@media(max-width: 991px)
{
  .main-header {
    padding: 0 5px !important;
  }

  .mobile-logo
  {
    display: block;
  }
  .top-bar-social.mobile
  {
    display: flex;
  }
}
@media(max-width: 991px)
{
  .logo-image
  {
    height: 50px;
  }
  .header-container
  {
    padding: 5px 0;
  }
  .book-now-btn
  {
    padding: 5px 20px;
  }

  .hero-banner
  {
    height: 65vh;
  }
  .hero-slide
  {
    height: 65vh;
  }
  .scroll-indicator
  {
    display: none;
  }
  .section-subtitle
  {
    font-size: 0.8rem;
  }
  .hotel-name
  {
    font-size: 1.2rem;
  }
  .load-more-btn {
    padding: 6px 20px;
    font-size: 1rem;
  }
  .stat-icon-wrapper
  {
    width: 40px;
    height: 40px;
  }
  .stat-icon i {
    font-size: 18px;
  }
  .stat-number
  {
    font-size: 24px;
  }
  .feature-description
  {
    font-size: 0.9rem;
  }
  p
  {
    font-size: 0.9rem;
  }
  .cta-button, .white-cta-button
  {
    padding: 6px 20px;
  }
  .footer
  {
    padding: 20px 0 20px;;
  }
  .cta-container
  {
    padding: 25px;
  }  
  .social-icons
  {
    margin-bottom: 1.5rem;
  }
  .hotel-portfolio
  {
    padding: 20px 0;
  }
  .construction-showcase .section-header
  {
    margin-bottom: 40px;
  }
  .image-overlay-1
  {
    top: -30px;
  }
  .contact-form h3
  {
    margin-bottom: 0;
  }
  .card-header h3
  {
    font-size: 18px;
  }
  .submit-btn.cta-button
  {
    float: none !important;
  }
  .scrolled .logo-image {
    height: 45px;
  }
  .main-header
  {
    padding: 5px;
  }

}

.lb-data .lb-close
{
  display: none;
}
button
{
  color: #000;
}