

@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* 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: "Raleway",  sans-serif;
  --nav-font: "Lato",  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 { 

  --primary: #320e0e;
  --secondary: #e86817;
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2c3031; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #18444c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #049ebb; /* 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: #496268;  /* The default color of the main navmenu links */
  --nav-hover-color: #049ebb; /* 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: #496268; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #049ebb; /* 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: #f2f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --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); */
}

*{
  font-family: "Inter", sans-serif !important;
}

img{
  border-radius: 5px;
}

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 {
  color: var(--heading-color);
  font-family: "Playfair Display", serif;
}




.rr-btn {
    color: white;
    /* font-family: 'Yantramanav', sans-serif !important; 
    font-size: 16px !important;
    line-height: 26px !important; */
    font-style: normal;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    background: var(--accent-color);
    z-index: 5;
    padding: 12.5px 30.099px;
  }
  .rr-btn:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    border-radius: 50%;
    z-index: 1;
    background: -webkit-gradient(linear, left top, right top, from(#049ebb), to(#053142)) !important;
    background: linear-gradient(90deg, #049ebb 10%, #053142 90%);
  }
  .rr-btn:after {
    display: block;
    clear: both;
    content: "";
  }
  .rr-btn .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
  }
  .rr-btn .btn-wrap .text-one {
    position: relative;
    display: block;
    color: white;
  }
  .rr-btn .btn-wrap .text-one svg, .rr-btn .btn-wrap .text-two svg {
    max-width: 10px;
    margin-left: 3px;
  }
  .rr-btn .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: white;
  }
  .rr-btn__primary-color {
    background: var(--rr-theme-primary);
  }
  .rr-btn__white {
    color: white;
    background: var(--rr-common-white);
  }
  .rr-btn__white .text-two {
    color: white !important;
  }
  .rr-btn__background-transparent {
    padding: 11.5px 29.099px;
    background: transparent;
    border: 1px solid rgba(0, 15, 32, 0.1);
  }
  .rr-btn__background-transparent .text-one {
    color: white !important;
  }
  .rr-btn__background-transparent:hover, .rr-btn__background-transparent:focus {
    border-color: transparent !important;
  }
  .rr-btn__text-primary .text-one {
    color: white !important;
  }
  .rr-btn__big-space {
    padding: 12.5px 53px;
  }
  .rr-btn:hover, .rr-btn:focus {
    color: white;
  }
  .rr-btn:hover:before, .rr-btn:focus:before {
    top: -40%;
  }
  .rr-btn:hover .text-one, .rr-btn:focus .text-one {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
  }
  .rr-btn:hover .text-two, .rr-btn:focus .text-two {
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }


.btns{
  border: 0px !important;
  box-shadow: none !important;
}



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

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/* .header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo svg {
  height: 32px;
  padding-right: 5px;
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .header .logo svg {
    height: 28px;
  }
} */

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 20px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  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 {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


.index-form{
    padding: 30px;
    background-color: #ffffff26;
}

input, textarea{
    border-radius: none !important;
    box-shadow: none !important;
}

/* .index-form form .form-control{
    padding: 10px 10px !important;
} */




/*--------------------------------------------------------------
# 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: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .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;
    width: 100%;
    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;
    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: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  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: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.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: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-weight: 500;
  transition: .5s all ease-in-out;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  letter-spacing: 3px;
}

.footer .footer-contact p {
  font-size: 15px;
  margin-bottom: 5px;
}

.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: 8px;
  font-size: 13px;
}

.footer-icon{
  font-size: 20px;
  color: var(--accent-color);
}

.angle{
  font-size: 35px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  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-color: var(--accent-color);
  width: 44px;
  height: 44px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 190px 0 20px 0;
}

@media(max-width:768px){
  .page-title{
    padding: 130px 0 20px 0;
  }
  .page-title h1{
    font-size: 55px !important;
  }
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  /* justify-content: center; */
  margin: 0;
  padding: 0;
  background: none;
}

.page-title h1{
  font-size: 65px;
  text-align: start;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
}

.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
  z-index: 2;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  width: 100%;
}

.hero .hero-content .content-box {
  padding: 2rem 0;
}

.hero .hero-content .content-box .badge-accent {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .hero-content .content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .hero-content .content-box .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero .hero-content .content-box .cta-group .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-content .content-box .cta-group .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .hero-content .content-box .cta-group .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .info-badges {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .content-box .info-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .hero-content .content-box .info-badges .badge-item i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-content .content-box .info-badges .badge-item .badge-content {
  display: flex;
  flex-direction: column;
}

.hero .hero-content .content-box .info-badges .badge-item .badge-content span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}

.hero .hero-content .content-box .info-badges .badge-item .badge-content strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero .features-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  padding: 2rem;
  margin-top: 15px;
}

.features-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  padding: 2rem;
  margin-top: 15px;
}

.hero .features-wrapper .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.hero .features-wrapper .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  flex-shrink: 0;
}

.hero .features-wrapper .feature-item .feature-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.hero .features-wrapper .feature-item .feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero .features-wrapper .feature-item .feature-text p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .hero .hero-content .content-box h1 {
    font-size: 3rem;
  }

  .hero .floating-features .features-wrapper {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    height: auto;
    min-height: 600px;
  }

  .hero .hero-content .content-box h1 {
    font-size: 2.5rem;
  }

  .hero .floating-features {
    position: relative;
    transform: translateY(0);
    padding: 3rem 0;
  }

  .hero .floating-features .features-wrapper {
    flex-direction: column;
  }

  .hero .floating-features .features-wrapper .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .hero .floating-features .features-wrapper .feature-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrapper {
    min-height: 500px;
  }

  .hero .hero-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .hero .hero-content .content-box h1 {
    font-size: 2.2rem;
  }

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

  .hero .hero-content .content-box .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero .hero-content .content-box .cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .hero .hero-content .content-box .info-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .content-box {
    padding: 1rem 0;
  }

  .hero .hero-content .content-box h1 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/

#about{
   font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
 
  
}
.home-about .about-image {
  position: relative;
}

.home-about .about-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .about-image .experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(30%);
}

.home-about .about-image .experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.home-about .about-image .experience-badge .text {
  font-size: 14px;
  display: block;
}

@media (max-width: 576px) {
  .home-about .about-image .experience-badge {
    right: 0px;
    padding: 15px;
  }

  .home-about .about-image .experience-badge .years {
    font-size: 28px;
  }

  .home-about .about-image .experience-badge .text {
    font-size: 12px;
  }
}

.home-about .about-image .experience-badge1 {
     position: absolute;
    bottom: 373px;
    right: px;
    background-color: #fc7304;
    color: var(--contrast-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(30%);
}

.home-about .about-image .experience-badge1 .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.home-about .about-image .experience-badge1 .text {
  font-size: 14px;
  display: block;

}

@media (max-width: 576px) {
  .home-about .about-image .experience-badge1 {
   
    padding: 15px;
    bottom: 239px;
  }

  .home-about .about-image .experience-badge1 .years {
    font-size: 28px;
  }

  .home-about .about-image .experience-badge1 .text {
    font-size: 12px;
  }
}















.home-about .about-content h2 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
   font-family: "Work Sans", sans-serif;
}

@media (max-width: 768px) {
  .home-about .about-content h2 {
    font-size: 28px;
     font-family: "Work Sans", sans-serif;
  }
}

.home-about .about-content .lead {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
   font-family: "Work Sans", sans-serif;
}

.home-about .about-content p {
  margin-bottom: 16px;
   font-family: "Work Sans", sans-serif;
}

.home-about .feature-item {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-about .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-about .feature-item .icon {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.home-about .feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.home-about .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.home-about .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.home-about .cta-wrapper .btn {
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
}

.home-about .cta-wrapper .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.home-about .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.home-about .cta-wrapper .btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.home-about .cta-wrapper .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.home-about .certifications-row {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.home-about .certifications-row .certification-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.home-about .certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.home-about .certifications .certification-item {
  flex: 0 0 150px;
  text-align: center;
  transition: transform 0.3s;
}

.home-about .certifications .certification-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}

.home-about .certifications .certification-item:hover {
  transform: translateY(-5px);
}

.home-about .certifications .certification-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 576px) {
  .home-about .certifications .certification-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 768px) {
  .home-about .certifications {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .home-about .about-content {
    margin-top: 60px;
  }
}



/*--------------------------------------------------------------
# Highlights Section
--------------------------------------------------------------*/
.cl1{
    background-image: url(../img/room1.jpg);
    background-repeat: no-repeat;
    height:  100% !important;
    /* height:  540px !important; */
    /* width: 100%; */
    object-fit: cover;
    background-size: cover;
    background-color: #00000093;
    background-blend-mode: multiply;
    padding: 170px;
}

.cl2{
    background-color: var(--primary);
    padding: 170px;
}

@media(max-width:768px){
    .cl1, .cl2{
        padding: 40px !important;
    }
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.call-to-action .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 2rem;
  }
}

.call-to-action .content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 3rem;
}

.call-to-action .cta-buttons .btn-primary,
.call-to-action .cta-buttons .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px 10px 0;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-secondary {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
}

.call-to-action .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-buttons .btn-secondary:hover {
  transform: translateY(-2px);
}

.call-to-action .features-row {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.call-to-action .feature-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.call-to-action .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.call-to-action .feature-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-color);
}

.call-to-action .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.call-to-action .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.call-to-action .feature-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.call-to-action .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.call-to-action .feature-card .feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .feature-card .feature-link span {
  margin-right: 8px;
}

.call-to-action .feature-card .feature-link i {
  transition: all 0.3s ease;
}

.call-to-action .feature-card .feature-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

.call-to-action .feature-card .feature-link:hover i {
  transform: translateX(5px);
}

.call-to-action .emergency-alert {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  color: var(--contrast-color);
}

.call-to-action .emergency-alert .emergency-content {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-content {
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

.call-to-action .emergency-alert .emergency-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.call-to-action .emergency-alert .emergency-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-text {
    text-align: center;
  }
}

.call-to-action .emergency-alert .emergency-text h4 {
  color: var(--contrast-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.call-to-action .emergency-alert .emergency-text p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}

.call-to-action .emergency-alert .emergency-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}

.call-to-action .emergency-alert .emergency-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.call-to-action .emergency-alert .emergency-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .call-to-action .emergency-alert {
    text-align: center;
  }

  .call-to-action .emergency-alert .row {
    flex-direction: column;
  }

  .call-to-action .emergency-alert .col-lg-4 {
    margin-top: 1rem;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .stats-container {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.about .stat-item {
  text-align: center;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

.about .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about .cta-buttons .btn-primary,
.about .cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--accent-color);
}

.about .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .image-section .main-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .image-section .main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about .image-section .image-grid .grid-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-item:hover img {
  transform: scale(1.05);
}

/* .certifications-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
} */

.certifications-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.certifications-section .section-header h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.certifications-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.certifications-section .certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.certifications-section .certifications-grid .certification-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.certifications-section .certifications-grid .certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.certifications-section .certifications-grid .certification-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.3s ease;
}

.certifications-section .certifications-grid .certification-item:hover img {
  filter: grayscale(0) opacity(1);
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 3rem;
  }

  .about .content h2 {
    font-size: 2rem;
  }

  .about .cta-buttons {
    justify-content: center;
  }

  .about .image-section .main-image img {
    height: 300px;
  }

  .about .image-section .image-grid .grid-item img {
    height: 150px;
  }

  .about .stats-container {
    margin: 2rem 0;
  }
}

@media (max-width: 768px) {
  .about .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about .cta-buttons .btn-primary,
  .about .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .certifications-grid .certification-item {
    padding: 1rem;
  }

  .certifications-grid .certification-item img {
    max-height: 45px;
  }
}



/*--------------------------------------------------------------
# Room Facilities Section
--------------------------------------------------------------*/

.room-facilities img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

.room-facilities .r-card {
    transition: .5s all ease-in-out;
}

.room-facilities .r-card:hover .rf-icon{
    filter: drop-shadow(4px 4px 3px #a0a0a0);
}

.rf-icon{
    font-size: 40px;
    color: var(--secondary);
    transition: .5s all ease-in-out;
}





/*--------------------------------------------------------------
# Rooms Section
--------------------------------------------------------------*/


/* .living{
  height: 280px;
  width: 100%;
  object-fit: cover;
  background-size: cover;
} */





/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.gallery .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .gallery .isotope-filters li {
    margin-bottom: 5px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery .gallery-img:hover img {
  transform: scale(1.05);
}

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery .gallery-info {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery .gallery-link i {
  font-size: 20px;
}

.gallery .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery .gallery-info h4 {
    font-size: 16px;
  }

  .gallery .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery .gallery-overlay {
    padding: 15px;
  }

  .gallery .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery .gallery-link i {
    font-size: 18px;
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 0px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  /* box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%); */
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}



/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


.row1{
  background-color: #f5f5f5;
}




.whatsapp{
    position:fixed;
    right: 3%;
    bottom: 15%;
    display: flex;
    align-items: center;
    gap: 10%;
    transition: .5s ease-in-out;
    z-index: 1;
    filter: drop-shadow(3px 3px 3px #616161);
    transition: .5s all ease-in-out;
}
.whatsapp .text{
    display: none;
    transition: .5s ease-in-out;
}
.whatsapp:hover .text{
    display: block;
}
.whatsapp p{
    width: 100%;
    background-color: var(--primary);
    padding: 10px;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all ease-in-out;
}
.whatsapp p::after{
   position: absolute;
   content: "";
   width: 20px;
   height: 20px;
   background-color: var(--primary);
   right: 0;
   transform: rotate(45deg);
   right: -6%;
   z-index: -1;
  
}




.booking-shell {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.glass-style {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.booking-hero {
  flex: 1 1 40%;
  background: var(--primary);
  color: var(--contrast-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  animation: slideRight 1.2s ease-out;
}

.booking-logo img {
  max-width: 80px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
}

.booking-hero h2 {
  font-size: 2rem;
  margin: 10px 0;
  color: var(--secondary);
}

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

.booking-contact span {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.booking-card {
  flex: 1 1 60%;
  padding: 40px;
  background: var(--surface-color);
  animation: slideUp 1.2s ease-out;
}

.booking-card h3 {
  margin-bottom: 20px;
  color: var(--heading-color);
}

.booking-form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.booking-field {
  position: relative;
}

.booking-field input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.booking-field label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: var(--surface-color);
  padding: 0 6px;
  color: var(--default-color);
  transition: 0.3s;
  pointer-events: none;
}

.booking-field input:focus + label,
.booking-field input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--accent-color);
}

.booking-form-full {
  grid-column: 1 / -1;
}

.booking-btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.booking-btn-primary:hover {
  background: var(--secondary);
}

/* Animations */
@keyframes slideRight {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media(max-width: 768px) {
  .booking-shell {
    flex-direction: column;
  }

  .booking-form-grid {
        grid-template-columns: repeat(1, 1fr);
  }
}


.royal-carousel-section {
  position: relative;
  overflow: hidden;
}

.royal-slide-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 2s ease;
}

.carousel-item.active .royal-slide-image img {
  transform: scale(1.05);
}

.royal-slide-content {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  display: flex;
  align-items: center;
}

.royal-content-box {
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 600px;
}

.royal-content-box h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}

.royal-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff8dc;
  margin-top: 10px;
}

/* Animation Effects */
.royal-animate-left { animation: royalSlideLeft 1s ease forwards; }
.royal-animate-right { animation: royalSlideRight 1s ease forwards; }
.royal-animate-up { animation: royalSlideUp 1s ease forwards; }

@keyframes royalSlideLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes royalSlideRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes royalSlideUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Controls & Indicators */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #f97d40;
  border-radius: 50%;
}

.carousel-indicators button {
  background-color: gold;
}

@media(max-width: 768px) {
  .royal-content-box h1 {
    font-size: 1.8rem;
  }
}

.royal-slide-image {
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.royal-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures all images fill without stretching */
  filter: brightness(70%);
  transition: transform 2s ease;
}

  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }
  .lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
  }
  .lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  .lightbox-close:hover {
    color: red;
  }
  /* Gallery Hover Overlay */
  .gallery-img {
    position: relative;
    cursor: pointer;
  }
  .gallery-img img {
    width: 100%;
    border-radius: 8px;
  }
  .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: 0.3s;
  }
  .gallery-img:hover .gallery-overlay {
    opacity: 1;
  }



    .booking-contact {
    display: flex;
    flex-direction: column; /* stacked layout */
    gap: 8px;
    font-size: 16px;
  }

  .booking-contact i {
    color: #d4a373; /* icon color */
    margin-right: 8px;
  }

  
  .about {
    background: linear-gradient(180deg, rgba(244,240,235,0.6), rgba(255,255,255,0));
  }

  .about-card {
    background: #fff;
    border-left: 6px solid var(--accent);
  }

  .about-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--deep);
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .about-title::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 8px;
    border-radius: 2px;
  }

  .about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    color: #333;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .image-section .main-image{
    position: relative;
    height: 320px;
  }
  .image-section .main-image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    display:block;
  }

  .image-badge{
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255,255,255,0.92);
    color: var(--deep);
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items:center;
    gap:8px;
    box-shadow: 0 6px 18px rgba(92,61,46,0.08);
    font-family: 'Poppins', sans-serif;
  }

  .image-grid .grid-item{
    height: 140px;
    overflow: hidden;
  }
  .image-grid .grid-item img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
  }

  .info-card{
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(92,61,46,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  }

  .text-accent{
    color: var(--accent);
  }

  /* Responsive tweaks */
  @media (max-width: 767.98px){
    .image-section .main-image{ height: 220px; }
    .image-grid .grid-item{ height: 110px; }
    .about-title { font-size: 1.4rem; text-align: center; }
    .about-card { border-left: none; border-top: 6px solid var(--accent); }
  }


  /* Hero Carousel Styling */
.chettinad-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.chettinad-hero .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.chettinad-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.chettinad-slide-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.chettinad-content-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

.chettinad-content-box .tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: 1px;
}

/* Animations */
.animate-left { animation: slideLeft 1.2s ease forwards; }
.animate-up { animation: slideUp 1.2s ease forwards; }
.animate-right { animation: slideRight 1.2s ease forwards; }

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Buttons */
.chettinad-content-box .btn {
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.chettinad-content-box .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}


/* Section Base */
.heritage-rooms {
  background: #fafafa;
  padding: 60px 0;
}

/* Each Room Row */
.heritage-room {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* Image Styling */
.heritage-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  transition: transform 0.4s ease;
}

.heritage-room-img img:hover {
  transform: scale(1.05);
}

/* Content Styling */
.heritage-room-content {
  padding: 30px;
}

.heritage-room-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.heritage-room-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  margin-bottom: 25px;
}

/* Button Styling */
.heritage-room-btn {
  display: inline-block;
  background: #b27d37; /* Golden brown heritage tone */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease;
}

.heritage-room-btn:hover {
  background: #8f622b;
  transform: translateY(-3px);
  color: #fff;
}

/* Inner animated span */
.heritage-room-btn .btn-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.heritage-room-btn .text-one,
.heritage-room-btn .text-two {
  display: block;
  transition: transform 0.3s ease;
}

.heritage-room-btn .text-two {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.heritage-room-btn:hover .text-one {
  transform: translateY(-100%);
}

.heritage-room-btn:hover .text-two {
  transform: translateY(-100%);
}

/* Responsive Fix */
@media (max-width: 991px) {
  .heritage-room {
    flex-direction: column;
  }
  .heritage-room-img img {
    border-radius: 16px 16px 0 0;
  }
}

@media (max-width: 768px) {
    .contact .contact-info-panel {
        padding: 30px 25px;
        width: 460px;
    }
}

@media (max-width: 768px) {
    .contact .form-container {
        padding: 30px 25px;
        width: 460px;
    }
}