﻿/* General Reset with New Font Pairing */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  box-sizing: border-box;
background-color: #102E57;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cdefs%3E%3CradialGradient id='a' cx='500' cy='500' r='60%25' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23102E57'/%3E%3Cstop offset='1' stop-color='%23102E57'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='500' cy='500' r='70%25' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23102E57' stop-opacity='1'/%3E%3Cstop offset='1' stop-color='%23102E57' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1000' height='1000'/%3E%3Cg fill='none' stroke='%2320376D' stroke-width='2' stroke-miterlimit='10' stroke-opacity='.5'%3E%3Ccircle cx='500' cy='500' r='725'/%3E%3Ccircle cx='500' cy='500' r='700'/%3E%3Ccircle cx='500' cy='500' r='675'/%3E%3Ccircle cx='500' cy='500' r='650'/%3E%3Ccircle cx='500' cy='500' r='625'/%3E%3Ccircle cx='500' cy='500' r='600'/%3E%3Ccircle cx='500' cy='500' r='575'/%3E%3Ccircle cx='500' cy='500' r='550'/%3E%3Ccircle cx='500' cy='500' r='525'/%3E%3Ccircle cx='500' cy='500' r='500'/%3E%3Ccircle cx='500' cy='500' r='475'/%3E%3Ccircle cx='500' cy='500' r='450'/%3E%3Ccircle cx='500' cy='500' r='425'/%3E%3Ccircle cx='500' cy='500' r='400'/%3E%3Ccircle cx='500' cy='500' r='375'/%3E%3Ccircle cx='500' cy='500' r='350'/%3E%3Ccircle cx='500' cy='500' r='325'/%3E%3Ccircle cx='500' cy='500' r='300'/%3E%3Ccircle cx='500' cy='500' r='275'/%3E%3Ccircle cx='500' cy='500' r='250'/%3E%3Ccircle cx='500' cy='500' r='225'/%3E%3Ccircle cx='500' cy='500' r='200'/%3E%3Ccircle cx='500' cy='500' r='175'/%3E%3Ccircle cx='500' cy='500' r='150'/%3E%3Ccircle cx='500' cy='500' r='125'/%3E%3Ccircle cx='500' cy='500' r='100'/%3E%3Ccircle cx='500' cy='500' r='75'/%3E%3Ccircle cx='500' cy='500' r='50'/%3E%3Ccircle cx='500' cy='500' r='25'/%3E%3C/g%3E%3Crect fill-opacity='.5' fill='url(%23b)' width='1000' height='1000'/%3E %3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

/* Headings Use Merriweather for Elegance */
h1, h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0;
}

/* Style the Back to Top button */
#backToTopBtn {
  position: fixed;
  top: 550px;  /* Default position for desktop */
  right: 20px;    /* Position to the right */
   width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b4d8, #007c91);  /* Button color */
  color: white;    /* Text color */
  border: none;
  border-radius: 50%;  /* Round shape */
  font-size: 18px;
  padding: 12px;
  cursor: pointer;
  display: none;   /* Initially hidden */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);  /* Shadow for visibility */
  z-index: 9999;  /* Ensure it's on top */
  transition: background-color 0.3s ease;
}

/* Hover effect */
#backToTopBtn:hover {
  background-color: #0056b3;  /* Hover effect */
}

/* Tablet portrait mode (up to 1024px width) */
@media only screen and (max-width: 1024px) {
  #backToTopBtn {
    top: 980px;  /* Adjust position for tablets */
    right: 15px;  /* Adjust right margin */
    padding: 12px;
    font-size: 17px;
  }
}

/* Tablet landscape mode (up to 768px width) */
@media only screen and (max-width: 768px) {
  #backToTopBtn {
    top: 900px;  /* Adjust position for landscape tablets */
    right: 10px;  /* Adjust right margin */
    padding: 10px;
    font-size: 16px;
  }
}

/* Small mobile devices (up to 480px width) */
@media only screen and (max-width: 480px) {
  #backToTopBtn {
    top: 900px;  /* Adjust position for small mobile screens */
    right: 10px;  /* Adjust right margin */
    padding: 8px;
    font-size: 14px;
  }
}

/* Medium mobile devices (up to 600px width) */
@media only screen and (max-width: 600px) {
  #backToTopBtn {
    top: 600px;  /* Adjust position for medium mobile screens */
    right: 15px;
    padding: 10px;
    font-size: 15px;
  }
}


/* Top Bar */
.top-bar {
  background: linear-gradient(rgba(77, 77, 77, 0.78), rgba(77, 77, 77, 0.75)), url(../images/exterior1.jpg); /* Taupe overlay with image */
  background-size: cover;
  background-position: center;
  color: #fff; /* White text color */
  padding: 15px 0;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

/* Top-Left: Address and Phone */
.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}

.top-left a em {
  margin-right: 5px;
}

.top-left a:hover {
  color: #5BB5A2; /* Soft Teal hover */
}

/* Top-Right: Social Media Icons */
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-right a:hover {
  color: #4A90E2; /* Soft Blue hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    gap: 10px;
    text-align: center; /* Center align for smaller screens */
  }
  .top-left,
  .top-right {
    justify-content: center;
  }
}



/* Logo Section */
.logo-section {
  background-color: #FAFAF8; /* Light neutral background */
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #E0E0E0; /* Optional: subtle divider */
}

.logo-section .logo img {
  max-width: 200px;
  filter: drop-shadow(0 2px 6px rgba(74, 144, 226, 0.15)); /* Soft Blue glow */
}
/* Main Header */
.main-header {
  background-color: #FAFAF8; /* Light neutral background */
  padding: 20px 0;
  border-top: 1px solid #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index:4;

}

/* Navigation Menu */
.nav-bar .menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
      font-weight: 820;
    font-size: 17px;
}

.nav-bar .menu li a {
  text-decoration: none;
  color: #2C2C2C; /* Dark gray for modern feel */
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.3s, border-bottom 0.3s;
   
}

.nav-bar .menu li a.active,
.nav-bar .menu li a:hover {
   /* Soft Blue */
  border-bottom: 2px solid #4A90E2;
}

/* Book Now Button */
.book-now {
  background-color: #4A90E2; /* Primary soft blue */
  color: #fff;
  padding: 5px 25px;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  border: 2px solid #2C2C2C; /* Dark border */
  transition: all 0.4s ease;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Hover Animation */
.book-now:hover {
  background-color: #5BB5A2; /* Teal hover effect */
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* Active Animation */
.book-now:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #4A90E2;
}

/* Mobile Menu Background */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 44, 44, 0.95); /* Dark overlay */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-menu .mobile-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile Menu List */
.mobile-menu-list {
  list-style: none;
  padding: 90px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}

.mobile-menu-list li a {
  text-decoration: none;
  font-size: 25px;
  color: #fff;
}

.mobile-menu-list li a:hover {
  color: #5BB5A2; /* Teal hover for mobile */
}

/* Show hamburger menu on iPad screens */
@media (max-width: 820px) {
  .menu-toggle {
    display: block; /* Display hamburger menu */
  }

  .nav-bar {
    display: none; /* Hide desktop navigation */
  }

  .book-now {
    display: none; /* Hide "Book Now" button */
  }
  
  .mobile-menu {
    display: none; /* Ensure the mobile menu is hidden by default */
  }

  .mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu .mobile-close {
    font-size: 30px; /* Adjust close button size for iPad */
  }

  .mobile-menu-list li a {
    font-size: 22px; /* Adjust font size for iPad screens */
  }
}



.arya-half-round-divider1,
.arya-half-round-divider-reverse1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

/* Normal Divider Specific */
.arya-half-round-divider1 {
  margin-top: -50px;
}

/* Reversed Divider Specific */
.arya-half-round-divider-reverse1 {
  margin-top: -60px;
  background: transparent;
}

/* 📱 Mobile & Tablet Fixes */
@media (max-width: 1024px) {
  .arya-half-round-divider1 {
    margin-top: -30px;
  }

  .arya-half-round-divider-reverse1 {
    margin-top: -35px;
  }
}

@media (max-width: 768px) {
  .arya-half-round-divider1 {
    margin-top: -20px;
  }

  .arya-half-round-divider-reverse1 {
    margin-top: -25px;
  }
}

@media (max-width: 480px) {
  .arya-half-round-divider1,
  .arya-half-round-divider-reverse1 {
    margin-top: -10px;
  }
}

/* Dropdown Parent (for both desktop & mobile) */
.has-dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff; /* White background for dropdown */
    list-style: none;
    min-width: 250px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow */
    z-index: 20;
    border-radius: 6px;
}

/* Dropdown Items */
.dropdown li {
    padding: 10px 20px;
}

.dropdown li a {
    color: #003366; /* Deep blue for menu items */
    text-decoration: none;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.dropdown li a:hover {
    color: #ffffff;
    background-color: #007BFF; /* Blue hover background */
    border-radius: 4px;
}

/* Show Dropdown on Hover */
.has-dropdown:hover .dropdown {
    display: block;
}

/* Mobile Dropdown Adjustments */
.mobile-menu .has-dropdown {
    position: relative;
}

.mobile-menu .dropdown {
    position: relative;
    display: none;
    background: #f0f4f8; /* Light grayish blue for mobile background */
    padding-left: 20px;
    border-radius: 0;
}

.mobile-menu .has-dropdown.active .dropdown {
    display: block;
}

.mobile-menu .dropdown li a {
    color: #003366;
}

.mobile-menu .dropdown li a:hover {
    background-color: #007BFF;
    color: #ffffff;
}




/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-top:-60px;
 
}

.hero-slide {
  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.5));
  background-size: cover;
  background-position: center;
  transform: scale(1.2); /* Initial zoomed-in */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, transform 1.5s ease;
}

/* Optional extra overlay for more contrast */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-slide.active {
  transform: scale(1); /* Zoom-out effect */
  opacity: 1;
  visibility: visible;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  max-width: 1200px;
  z-index: 2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink 0.5s step-end infinite alternate;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Hero Button */
.hero-btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: rgba(74, 144, 226, 0.9); /* Soft Blue with slight transparency */
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
}

/* Hover Effect */
.hero-btn:hover {
  background-color: #5BB5A2; /* Soft Teal */
  color: #fff;
  transform: scale(1.05);
}


@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: rgba(255, 255, 255, 0.75);
  }
  to {
    border-color: transparent;
  }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-controls .dot {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 3px solid #4A90E2; /* Soft Blue border */
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.slider-controls .dot.active {
  background-color: #4A90E2; /* Active dot filled with primary blue */
  transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
}

.slider-arrows .arrow {
  font-size: 3.5rem;
  color: #FAFAF8; /* Off White for contrast */
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  animation: bounce 2s infinite;
}

.slider-arrows .arrow:hover {
  /* Soft Teal on hover */
  color: #fff;
  transform: scale(1.1);
}

/* Specific Arrow Icons */
.slider-arrows .prev::before {
  content: '\2190'; /* Left arrow */
  font-family: Arial, sans-serif;
}

.slider-arrows .next::before {
  content: '\2192'; /* Right arrow */
  font-family: Arial, sans-serif;
}

/* Right and Left Movement Animation */
@keyframes moveSideways {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0); /* Default position */
  }
  40% {
    transform: translateX(-10px); /* Move left */
  }
  60% {
    transform: translateX(10px); /* Move right */
  }
}

/* Apply Animation to Arrows */
.slider-arrows .prev {
  animation: moveSideways 1.5s infinite ease-in-out;
}

.slider-arrows .next {
  animation: moveSideways 1.5s infinite ease-in-out;
}



/* Responsive Design */
@media (max-width: 768px) {
	.hero {

  height: 40vh;

 
}
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .slider-arrows .arrow {
    font-size: 2.5rem;
  }
}

@media (max-width: 1080px){
	.hero {

  height: 40vh;

 
}
}


@media (max-width: 480px) {
	
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .slider-controls {
    gap: 8px;
  }
}
/* 🌟 Simple Assistance Section */
.assistance-simple {
    background: #0000006e;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    line-height: 1.5;
}

/* 📌 Highlighted Text */
.assistance-simple span {
    font-weight: 500;
    color: #264653;
}

/* 📞 Clickable Phone */
.assistance-phone {
    font-size: 20px;
    font-weight: 600;
    color: #264653;
    text-decoration: none;
    margin-left: 5px;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

.assistance-phone:hover {
    color: #E76F51;
}

/* 📱 Responsive Adjustments */
@media (max-width: 1024px) {
    .assistance-simple {
        font-size: 20px;
        padding: 16px;
        white-space: normal; /* 💡 Allow line break */
    }
}

@media (max-width: 768px) {
    .assistance-simple {
        font-size: 18px;
        padding: 14px;
    }

    .assistance-phone {
        font-size: 18px;
    }
}

.call-link {
    color: #FFFFFF; /* White text */
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.call-link:hover {
    color: #E9C46A; /* Golden Sunset - Highlight on hover */
    text-decoration: none;
}

/* Welcome Section */
.arya-welcome-section {
    background: #0000006e; /* Soft Blue */
    color: #ffffff;
    padding: 30px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Container */
.arya-welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

/* Image Wrapper */
.arya-image-wrapper {
    position: relative;
    width: 50%;
}

/* Main Image */
.arya-main-image img {
    width: 80%;
    height: auto;
    border-radius: 5px 100px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}

/* Overlay Image */
.arya-overlay-image {
    position: absolute;
    bottom: -40px;
    left: 50px;
    width: 55%;
    z-index: 2;
}

.arya-overlay-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Text Content */
.arya-text-content {
    width: 80%;
}

/* Tagline */
.arya-tagline {
    font-size: 21px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B2EBF2; /* Light Teal accent */
    margin-bottom: 10px;
}

/* Heading */
.arya-heading {
    font-size: 45px;
    font-weight: 400;
    text-align: left;
}

/* Descriptions */
.arya-description,
.arya-subtext {
    font-size: 20px;
    margin-top: 15px;
    color: #E6F7FA; /* Soft contrasting white */
    line-height: 1.6;
}

/* Read More Section (Initially Hidden) */
.arya-more-info {
    display: none;
    margin-top: 20px;
    font-size: 18px;
    color: #E6F7FA;
    line-height: 1.6;
}

/* Read More Button */
.arya-read-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.arya-read-btn:hover {
    background: #fff;
    color: #2C2C2C;
}

/* ✅ Responsive Fixes */
@media (max-width: 1024px) {
    .arya-welcome-container {
        flex-direction: column;
        text-align: center;
    }

    .arya-image-wrapper {
        width: 100%;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .arya-main-image img {
        width: 80%;
    }

    .arya-overlay-image {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 60%;
    }

    .arya-text-content {
        width: 90%;
        text-align: center;
    }

    .arya-heading {
        font-size: 42px;
        text-align: center;
    }

    .arya-description,
    .arya-subtext {
        font-size: 16px;
    }

    .arya-read-btn {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
}

/* 📱 Small Mobile Screens (393x852, 430x932) */
@media (max-width: 430px) {
    .arya-overlay-image {
        bottom: -10px;
        width: 65%;
    }

    .arya-heading {
        font-size: 36px;
    }

    .arya-description {
        font-size: 15px;
    }
}

/* 📲 Medium Screens (538x1040) */
@media (max-width: 538px) {
    .arya-overlay-image {
        bottom: -20px;
        width: 60%;
    }
}

/* 📉 Larger Mobile Screens & Tablets (820x1180) */
@media (max-width: 820px) {
    .arya-overlay-image {
        bottom: -25px;
        width: 55%;
    }
}
/* Animation Keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply Animations */
.animate-left {
  animation: fadeInLeft 3s ease-out forwards;
  opacity: 0;
}

.animate-right {
  animation: fadeInRight 3s ease-out forwards;
  opacity: 0;
}


/* Half-Round Divider Styling */
.arya-half-round-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 0px;
  z-index:1;
  Background:#0000006e;
}

.arya-half-round-divider svg {
  display: block;
  width: 100%;
  height: auto;
}



.arya-half-round-divider-reverse {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.arya-half-round-divider-reverse svg {
  display: block;
  width: 100%;
  height: auto;
}



/* Amenities */
/* Section Background – Wave Style */
.htis-macon-amenities-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
  padding: 80px 0;
  position: relative;
}

.htis-macon-amenities-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('https://svgshare.com/i/15yX.svg') repeat-x;
  background-size: cover;
}

/* Container */
.htis-macon-amenities-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  width: 90%;
}

/* Left Text Section */
.htis-macon-amenities-text {
  flex: 1;
  max-width: 440px;
}

.section-highlight {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to right, #4A90E2, #5BB5A2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.htis-macon-amenities-title {
  font-size: 48px;
  font-weight: 800;
  color: #222;
  margin: 15px 0;
  position: relative;
}

.htis-macon-amenities-title span {
  background: linear-gradient(to right, #4A90E2, #5BB5A2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.htis-macon-amenities-description {
  font-size: 19px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.htis-macon-amenities-button {
  background: linear-gradient(to right, #4A90E2, #5BB5A2);
  color: #fff;
  font-size: 17px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.htis-macon-amenities-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Right Amenities Grid */
.htis-macon-amenities-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* Amenity Card – Glassmorphism Style */
.htis-macon-amenity-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.htis-macon-amenity-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon Design */
.htis-macon-icon {
  background: linear-gradient(135deg, #4A90E2, #5BB5A2);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: floatIcon 3s ease-in-out infinite;
}

.htis-macon-icon em {
  font-size: 32px;
  color: #fff;
}

/* Icon floating animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.htis-macon-amenity-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.htis-macon-amenity-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .htis-macon-amenities-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


.arya-divider-reverse-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
 
  z-index: 1;
}

.arya-divider-reverse-top svg {
  display: block;
  width: 100%;
  height: auto;
}



.arya-luxury-rooms {
  padding: 80px 20px;
  background: transparent;
}

.arya-rooms-header {
  text-align: center;
  margin-bottom: 60px;
}




.arya-rooms-header h2 {
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5); /* Soft glow effect */
}


.arya-rooms-header p {
  color: #fff;
  font-size: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.arya-rooms-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card */
.arya-room-box {
  width: 280px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.arya-room-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Image */
.arya-room-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.arya-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.4s ease;
}

.arya-room-box:hover img {
  scale: 1.05;
}

/* Label */
.arya-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #4A90E2;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Content */
.arya-room-body {
  padding: 20px;
  text-align: center;
}



.arya-room-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.arya-room-body ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.arya-room-body em {
  margin-right: 6px;
  font-style: normal;
  color: #5BB5A2;
}

/* Button */
.arya-book-btn {
  display: inline-block;
  background: linear-gradient(to right, #4A90E2, #5BB5A2);
  padding: 10px 26px;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.arya-book-btn:hover {
  background: linear-gradient(to right, #5BB5A2, #4A90E2);
}

.arya-rooms-subtitle {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.arya-room-title {
  font-size: 18px;
  color: #2C2C2C;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .arya-room-box {
    width: 100%;
    max-width: 340px;
  }
}


.arya-attractions-section {
  padding: 80px 20px;
}

.arya-attractions-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
 
}

.attractions-left {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  box-sizing: border-box;
}

.attractions-right {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  box-sizing: border-box;
}

.arya-attractions-text {
  max-width: 100%;
}

.section-highlight1 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
}

.arya-attractions-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.arya-attractions-text p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}

.arya-attractions-button {
  background: linear-gradient(to right, #4a90e2, #5bb5a2);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
}

.arya-attractions-button:hover {
  background: linear-gradient(to right, #5bb5a2, #4a90e2);
}

/* Swiper container */
.attraction-swiper {
  width: 100%;
  height: 100%;
  max-height: 480px;
  position: relative;
  box-sizing: border-box;
}

.attraction-swiper .swiper-slide {
  background: #ffffffb3;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.attraction-swiper img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.slide-info {
  padding: 30px;
  background: #fff;
  text-align: left;
}

.slide-info h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.slide-info p {
  font-size: 16px;
  color: #000;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 50%;
  color: #fff;
  z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}


.section-highlight1 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
}

.slide-info .slide-title {
  font-size: 26px !important;  /* Force priority over .slide-info p */
  margin-bottom: 10px;
  color: #2c2c2c;
  font-weight: bold;
}



/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .arya-attractions-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .attractions-left,
  .attractions-right {
    width: 100%;
    padding: 20px;
  }

  .arya-attractions-title {
    font-size: 28px;
  }

  .arya-attractions-text p,
  .slide-info p {
    font-size: 15px;
  }

  .slide-info {
    padding: 20px;
  }

  .attraction-swiper {
    height: auto;
  }

  .attraction-swiper img {
    height: 220px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.arya-divider-reverse-transparent {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent; /* Transparent background */
  z-index: 1;
}

.arya-divider-reverse-transparent svg {
  display: block;
  width: 100%;
  height: auto;
}

.lux-video-section {
  background: url('../images/video.jpg') center/cover no-repeat;
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lux-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 👈 Make it cover the full section */
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
  color: #fff;
  backdrop-filter: blur(4px);
}

.lux-video-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.lux-play-btn {
  background: #f5a623;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.5);
  cursor: pointer;
  animation: pulse 1.5s infinite;
  z-index: 3;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(245, 166, 35, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 25px rgba(245, 166, 35, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(245, 166, 35, 0.4); }
}

.lux-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lux-video-frame-wrapper {
  width: 90%;
  max-width: 900px;
  height: 500px;
  position: relative;
}

.lux-video-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.lux-video-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #333;
  font-size: 26px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
}

/* 🔷 Dividers */
.video-top-divider,
.video-bottom-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  
}

.video-top-divider svg,
.video-bottom-divider svg {
  display: block;
  width: 100%;
  height: auto;
}




  .arya-gallery-section {
      padding: 80px 20px;
      max-width: 1400px;
      margin: auto;
    }

    .arya-gallery-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .arya-gallery-header h3 {
      font-size: 40px;
      font-weight: 700;
      color: #fff;
    }

    .arya-gallery-tabs button {
      background: none;
      border: none;
      font-size: 20px;
      color: #fff;
      margin-left: 20px;
      cursor: pointer;
      position: relative;
    }

    .arya-gallery-tabs button.active {
      color: #f1592a;
      font-weight: 600;
    }

    .arya-gallery-tabs button.active::after {
      content: '';
      position: absolute;
      width: 6px;
      height: 6px;
      background: #f1592a;
      border-radius: 50%;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
    }

    .arya-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .arya-gallery-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }

    .arya-gallery-card:hover {
      transform: translateY(-6px);
    }

    .arya-gallery-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .arya-gallery-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 12px 16px;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .arya-gallery-label em {
      color: #fff;
    }

    @media (max-width: 768px) {
      .arya-gallery-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .arya-gallery-tabs {
        margin-top: 20px;
      }
    }
	
	
	.arya-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.arya-lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.arya-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.arya-lightbox-prev,
.arya-lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.arya-lightbox-prev:hover,
.arya-lightbox-next:hover {
  background: rgba(255,255,255,0.6);
}

.arya-lightbox-prev {
  left: 30px;
}

.arya-lightbox-next {
  right: 30px;
}

.arya-gallery-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.arya-gallery-button {
  display: inline-block;
  background: linear-gradient(to right, #0077B6, #00B4D8);
  color: #ffffff;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
}

.arya-gallery-button:hover {
  background: linear-gradient(to right, #00B4D8, #0077B6);
  transform: translateY(-2px);
}



/* 🏨 Info Box Styling */
.info-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-logo {
  width: 120px;
  margin-bottom: 20px;
}

.info-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: #C89F59;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-title {
  font-size: 30px;
  font-weight: bold;
  color: #264653;
  margin-bottom: 15px;
}

.info-description {
  font-size: 16px;
  color: #6F6C6C;
  line-height: 1.6;
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
  .info-box {
    padding: 20px;
  }

  .info-logo {
    width: 90px;
  }

  .info-title {
    font-size: 26px;
  }

  .info-description {
    font-size: 15px;
  }
}



/* Footer Section */
.aligned-footer {
    background:#fafaf8; /* Soft light blend */
    color: #000;
    padding: 10px 5%;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #d0e8ed;
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo-wrapper img {
    max-width: 180px;
    height: auto;
}

/* Social Media Icons */
.footer-social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c8e6e4;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #003f5c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 79, 89, 0.2);
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-contact,
.footer-links,
.footer-follow {
    flex: 1;
    min-width: 250px;
}

/* Section Titles */
.footer-contact h4,
.footer-links h4,
.footer-follow h4 {
    font-size: 22px;
    color: #003f5c;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #a0ced9;
    padding-bottom: 6px;
}

/* Contact Info */
.footer-contact p,
.footer-contact span {
   font-size: 20px;
    color: #003f5c;
	
}

.cgsl {
    color: #036;
    font-weight: bold;
    text-decoration: none;
	
}

.cgsl:hover {
    color: #005965;
    text-decoration: underline;
}

.cgs2 {
    color:#003f5c;
   font-size: 22px;
    font-weight: bold;
	text-decoration:none;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-links ul li a {
    color: #102e57;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007c91;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(255, 255, 255, 0.4);
    padding: 20px 0;
    margin-top: 30px;
    color: #333;
    text-align: center;
    font-size: 17px;
    border-top: 1px solid #cfe7ea;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #004f59;
}



@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact,
    .footer-links,
    .footer-follow {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-links ul {
        grid-template-columns: repeat(2, 1fr); /* Ensure 2 columns on smaller screens */
    gap: 10px;
    }
	.footer-links ul li a {
    font-size: 18px;
  }
}

/* 🔷 Footer Top Divider */
.footer-top-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -80px;
  margin-bottom: -8px;
  
  z-index:1;
  /* Avoid visible line between divider and footer */
}

.footer-top-divider svg {
     display: block;
  width: 100%;
  height: auto;
}



/* Inner Hero Section */
.inner-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-top:-55px;
   z-index: 0;
}

.inner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.inner-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
    margin-top:20px;
}

.inner-description {
  font-size: 20px;
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-hero {
    height: 280px;
  }

  .inner-title {
    font-size: 30px;
  }

  .inner-description {
    font-size: 16px;
  }
}





/* New Facility Section */
.new-facility-section {
    padding: 40px 20px;
    /* Light clean background */
    text-align: center;
    color: #1e2a47;
}

.new-facility-title {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
	font-weight:700;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #00b4d8;
    margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Facility Box */
.facility-box-creative {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-background {
    background: linear-gradient(to right, #4A90E2, #5BB5A2);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
    border-bottom: 5px solid #caf0f8;
}

.facility-box-creative:hover .icon-background {
    background: linear-gradient(to right, #5BB5A2,#4A90E2 );
}

.facility-info {
    padding: 30px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.6rem;
    color: #023047;
    margin-bottom: 15px;
}

.facility-info p {
    color: #2C2C2C;
    font-size: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .facility-box-creative {
        max-width: 100%;
    }

    .icon-background {
        padding: 20px;
    }
}

/* General Facilities Section */
.facility-section {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #fafaf800, #b7f7ff, #fafaf875);
}

.facility-container {
    max-width: 1200px;
    margin: 0 auto;
}



.facility-title {
    font-size: 45px;
    color: #2C2C2C;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #4a90e2;
    margin: 10px auto;
    border-radius: 2px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-column {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-column h3 {
    font-size: 1.6rem;
    color: #4a90e2;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 8px;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.1rem;
    color: #023047;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.facility-list li em {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-right: 10px;
}

.facility-list li:hover {
    background-color: #d0f0ff;
    border-radius: 5px;
    padding-left: 10px;
    transition: 0.3s ease-in;
}

@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .facility-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.well {
    color: #2C2C2C;
    font-size: 20px;
   background:linear-gradient(to bottom,  #fafaf800, #b7f7ff,#fafaf800);
    margin: 0 auto;
	
}







.things-to-do {
    padding: 40px 0;
    background: linear-gradient(to bottom,  #fafaf875, #b7f7ff,#fafaf800);
    text-align: center;
}

.things-title {
   font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.things-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #00b4d8;
    margin: 10px auto;
    border-radius: 2px;
}

/* Container for the things-to-do section */
.things-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Slider Styling */
.things-slider {
    flex: 1;
    max-width: 50%;
    min-width: 300px;
    position: relative;
}

.custom-hero-slide {
    display: none;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 8px;
}

.custom-hero-slide.active {
    display: block;
}

.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.custom-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    max-width: 90%;
}

.custom-hero-content h1 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
}

.custom-hero-content p {
    font-size: 19px;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.4;
}

.custom-hero-btn {
    margin-top: 5px;
    padding: 8px 16px;
    background-color: #00b4d8;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-hero-btn:hover {
    background-color: #0077a8;
    transform: scale(1.05);
}

/* Content Box Styling */
.things-content-box {
    flex: 1;
    max-width: 40%;
    min-width: 300px;
    padding: 20px;
    color: #023047;
    border-radius: 8px;
}

.content-inner h2 {
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #023047;
}

.content-inner p {
    font-size: 20px;
    margin-bottom: 10px;
    color: #023047;
}

.content-inner ul {
    list-style: none;
    padding: 0;
}

.content-inner ul li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.content-inner ul li:before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #00b4d8;
}
.slide-title {
	font-family: 'Merriweather', serif;
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 1024px) {
    .things-slider {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .things-content-box {
        max-width: 80%;
        margin: 0 auto;
    }

    .custom-hero-content h1 {
        font-size: 20px;
    }

    .custom-hero-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .things-container {
        flex-direction: column;
    }

    .things-slider, .things-content-box {
        max-width: 90%;
        margin: 0 auto;
    }

    .custom-hero-slide {
        height: 250px;
    }

    .custom-hero-content h1 {
        font-size: 20px;
    }

    .custom-hero-content p {
        font-size: 14px;
    }

    .custom-hero-btn {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .things-slider, .things-content-box {
        max-width: 100%;
    }

    .custom-hero-slide {
        height: 200px;
    }

    .custom-hero-content h1 {
        font-size: 18px;
    }

    .custom-hero-content p {
        font-size: 12px;
    }

    .custom-hero-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
 /* Attractions Full Width Wrapper */
  .attractions-wrapper {
    
    padding: 20px;
     /* soft teal white */
  }

  /* Grid Layout */
  .attractions-grid {
    max-width: 1400px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Individual Attraction Card */
  .attractions-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
  }

  .attractions-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .attractions-card:hover img {
    transform: scale(1.05);
  }

  /* Text Content Box */
  .attractions-info {
    padding: 20px;
    background-color: #e6f8f9; /* very light teal background */
    border-radius: 0 0 10px 10px;
    width: 100%;
    height: 100%;
  }

  /* Title */
  .attractions-subtitle {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #006d77; /* Deep Teal */
  }

  /* Description */
  .attractions-description {
    font-size: 16px;
    margin-bottom: 10px;
    color: #023047;
  }

  /* Bullet List */
  .attractions-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    text-align: left;
  }

  .attractions-list li {
    font-size: 20px;
    margin-bottom: 6px;
    color: #023047;
    position: relative;
    padding-left: 25px;
  }

  .attractions-list li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: #00b4d8;
    font-weight: bold;
    font-size: 16px;
  }

  /* Button */
  .attractions-read-more-btn {
    padding: 10px 20px;
    background-color: #00b4d8;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }

  .attractions-read-more-btn:hover {
    background-color: #006d77;
  }

  /* Section Header */
  .attractions-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .custom-header-title {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .attractions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .attractions-grid {
      grid-template-columns: 1fr;
    }

    .custom-header-title {
      font-size: 36px;
    }
  }


/* 1. Full-width Title Section */
.contact-hero-banner {
   background: linear-gradient(to bottom,  #fafaf875, #fafaf800);
  padding: 60px 20px 40px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-subtitle {
  font-size: 18px;
  color: #0077b6;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.custom-contact-title {
 font-size: 3rem;
    color: #2C2C2C;
  
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.custom-contact-description {
  font-size: 20px;
  color: #555;
  font-weight: 400;
}


/* 2. Contact Info + Image Section */
.futuristic-contact-section {
  padding: 40px 20px 80px;
   background: linear-gradient(to bottom,  #fafaf800, #b7f7ff,#fafaf800);
}

.futuristic-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.futuristic-contact-info {
  flex: 1;
  max-width: 520px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.futuristic-contact-info p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #0077b6;
  font-weight: 600;
}

.futuristic-info-block a {
  color: #0077b6;
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #023047;
}

.futuristic-image-block {
  flex: 1;
  max-width: 520px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  
}

.contact-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-contact-title {
    font-size: 36px;
  }

  .contact-hero-banner,
  .futuristic-contact-section {
    padding: 40px 20px;
  }

  .futuristic-contact-container {
    flex-direction: column;
  }

  .futuristic-contact-info,
  .futuristic-image-block {
    max-width: 100%;
  }

  .custom-contact-description {
    font-size: 16px;
  }
  
  .contact-image {
 
  margin-bottom:100px;
}
}



/* Custom Location Section */
.custom-location-section {
  padding: 60px 20px;
  margin-bottom: 20px;
  
}

.custom-location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
   background: linear-gradient(to bottom,  #fafaf800, #b7f7ff,#fafaf800);
  padding: 40px;
  border-radius: 12px;
 
}

/* Header Section */
.custom-location-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}



.custom-location-title {
   font-size: 3rem;
    color: #2C2C2C;
   
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

/* Left Side: Text & Form */
.custom-location-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.custom-location-description {
  font-size: 20px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Coordinates Box */
.custom-coordinates-box {
  background-color: #e0f7fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.custom-coordinates-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0077b6;
  font-weight: 600;
}

.custom-coordinate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-coordinate-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.custom-coordinate-list em {
  color: #0077b6;
  margin-right: 8px;
}

/* Form Styling */
.custom-directions-form {
  margin-top: 20px;
}

.custom-input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f9f9f9;
  color: #333;
}

.custom-directions-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #4A90E2, #5BB5A2);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-directions-btn:hover {
  background:linear-gradient(to right, #5BB5A2, #4A90E2);
}

/* Right Side: Map Image */
.custom-location-image {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.custom-image:hover {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-location-container {
    flex-direction: column;
  }

  .custom-location-text,
  .custom-location-image {
    max-width: 100%;
  }

  .custom-location-title {
    font-size: 32px;
  }
}

/* 📍 Updated Sitemap Section - Arya Inn & Suites Irving Theme */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom,  #fafaf800, #b7f7ff,#fafaf800);/* Soft off-white to light gray */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #023047; /* Deep slate blue */
    margin-bottom: 20px;
    font-weight: 600;
}

.sitemap-subtitle {
    font-size: 1.4rem;
    color: #5c5c5c; /* Soft gray */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #0077b6; /* Clean blue highlight */
    margin-bottom: 15px;
    font-weight: 500;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sitemap-block ul li a em {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #0077b6;
}

.sitemap-block ul li a:hover {
    color: #e76f51; /* Warm terracotta accent on hover */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}



/* FAQ Section with Arya Blue Layout Colors */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom,  #fafaf800, #b7f7ff,#fafaf800);
    color: #1e2d3b;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #007bff; /* Light blue bubble */
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 3rem;
    font-weight: bold;
    color: #0b3e69; /* Deep navy */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
	text-decoration:none;
}

.faq-subtitle {
    font-size: 1.4rem;
    color: #4a6d88;
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #cce4f6;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #0077b6; /* Arya blue */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #48cae4; /* Cyan blue accent */
}

.faq-item p {
    font-size: 1.1rem;
    color: #3d4d5c;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-item a {
    color: #0077b6;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #48cae4;
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #005a8d;
}

.faq-item a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.6rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}

.gen {
	font-size: 20px;
    color: #000;
    margin-bottom:-10px;
	}
	
.title5 {
	    font-size: 25px;
    color: #003f5c;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #a0ced9;
    padding-bottom: 6px;
text-decoration:none;
}

.hover-link {
    text-decoration: none;
    color: inherit; /* Default color */
  }
  .hover-link:hover {
    color: blue; /* Color on hover */
  }
  
  
/* General Section Styling */
.attractions-section {
    padding: 60px 20px;
    background:linear-gradient(rgb(250 250 248), rgba(77, 77, 77, 0.75));
    color: #333;
    font-family: Arial, sans-serif;
   
}

/* Container Styling */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.attractions-header {
    text-align: center;
    margin-bottom: 50px;
}

.attractions-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff; /* White color for header text to stand out against dark background */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attractions-header p {
    font-size: 18px;
    color: #dcdcdc; /* Light gray for the paragraph text to complement the dark background */
}


/* Attractions Row - Two Boxes Per Row */
.attractions-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.attraction-item {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.attraction-info h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.attraction-info p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Icon Style */
.icon {
    color: #1e90ff;
    font-size: 30px;
    margin-right: 15px;
}

/* Why Choose Our Hotel Section */
.why-choose-hotel {
    text-align: center;
    margin-top: 40px;
}

.why-choose-hotel .why-choose-box {
    background: rgba(0, 0, 0, 0.6); /* Black fade */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.why-choose-hotel h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.why-choose-hotel p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

/* Button Styling */
.why-choose-hotel a {
    display: inline-block;
    padding: 12px 30px;
    background: #1e90ff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.why-choose-hotel a:hover {
    background: #005bb5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .attractions-row {
        flex-direction: column;
    }

    .attraction-item {
        margin-bottom: 30px;
    }

    .attractions-header h2 {
        font-size: 32px;
    }

    .attractions-header p {
        font-size: 16px;
    }

    .why-choose-hotel h3 {
        font-size: 24px;
    }

    .why-choose-hotel p {
        font-size: 16px;
    }
}





/* General Section Styles */
.attractions-page {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.attractions-header {
  margin-bottom: 40px;
}

.attractions-header h2 {
  font-size: 36px;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.attractions-header p {
  font-size: 18px;
  color: #666;
}

/* Container for Attraction Cards */
.attractions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Attraction Card Styles */
.attraction-card {
  background-color: #fff;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
  text-align: left;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.attraction-header h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.attraction-header .attraction-type {
  font-size: 16px;
  color: #00aaff;
  font-weight: 500;
}

.attraction-body p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.attraction-body strong {
  color: #333;
}

/* Why Choose Our Hotel Section */
.why-choose-our-hotel {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 40px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

.why-choose-our-hotel h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.why-choose-our-hotel p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  background-color: #00aaff;
  color: white;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #007bb5;
}




/* Section Styling */
.custom-attractions-section {
    padding: 60px 20px;
    background: linear-gradient(rgb(250 250 248), rgba(77, 77, 77, 0.75));
    color: #333;
}

.custom-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.custom-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e2a47;
    text-transform: uppercase;
}

.custom-section-description {
    font-size: 18px;
    color: #7f8c8d;
    margin-top: 10px;
}

/* Attraction Cards */
.custom-attraction-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.custom-attraction-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 45%;
    padding: 20px;
    transition: transform 0.3s ease;
}

.custom-attraction-card:hover {
    transform: translateY(-10px);
}

.custom-attraction-card-header {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.custom-attraction-tagline {
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 5px;
}

.custom-attraction-card-body {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
}

.custom-attraction-card-body ul {
    list-style-type: none;
    padding: 0;
}

.custom-attraction-card-body ul li {
    margin-bottom: 10px;
}

/* Hotel Info Section */
.custom-hotel-info {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.custom-hotel-info h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.custom-hotel-info p {
    font-size: 18px;
    line-height: 1.5;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-attraction-cards {
        flex-direction: column;
        align-items: center;
    }

    .custom-attraction-card {
        width: 100%;
        margin-bottom: 20px;
    }
}






/* Section Styling */
.custom-airport-section {
    padding: 60px 20px;
    background:linear-gradient(rgb(250 250 248), rgba(77, 77, 77, 0.75));
    color: #333;
}

.custom-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.custom-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e2a47;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.custom-section-description {
    font-size: 18px;
    color: #7f8c8d;
}

/* Info Box Styling */
.custom-info-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.custom-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.custom-info-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.custom-info-box ul {
    list-style: none;
    padding: 0;
}

.custom-info-box ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

/* Hotel Info Section */
.custom-hotel-info {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.custom-hotel-info h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.custom-hotel-info p {
    font-size: 18px;
    line-height: 1.5;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-info-box {
        margin-bottom: 20px;
    }

    .custom-info-box h3 {
        font-size: 22px;
    }

    .custom-info-box p,
    .custom-info-box ul li {
        font-size: 14px;
    }

    .custom-hotel-info h3 {
        font-size: 24px;
    }

    .custom-hotel-info p {
        font-size: 16px;
    }
}













/* ===== Home TownInn Rooms Section ===== */

/* Section Layout */
.homeinn-rooms-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

/* Header */
.homeinn-rooms-header {
  max-width: 900px;
  margin: 0 auto 40px;
}

.homeinn-rooms-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.homeinn-rooms-header h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

/* FLEX CONTAINER WIDER */
.homeinn-rooms-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

/* WIDER ROOM BOX */
.homeinn-room-box {
  width: 500px;
  max-width: 48%;        /* 2 boxes fit in one row */
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.homeinn-room-box:hover {
  transform: translateY(-5px);
}

.homeinn-room-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.homeinn-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #cc0000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
}

.homeinn-room-body {
  padding: 25px;
}

.homeinn-room-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
}

.homeinn-book-btn {
  display: inline-block;
  background-color: #0077cc;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .homeinn-room-box {
    width: 100%;
    max-width: 100%;
  }
}





.homeinn-text-block {
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

.homeinn-tagline {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b9c6d9;
  margin-bottom: 12px;
}

.homeinn-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
}

.homeinn-description {
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;           /* JUSTIFY TEXT */
  color: #d1d5de;
}









.homeinn-attractions-clean {
  padding: 70px 0;
      background: #102e574a
  text-align: center;
}

.heading-wrap {
  max-width: 800px;
  margin: 0 auto 40px;
}

.heading-wrap h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.heading-wrap p {
  font-size: 16px;
  color: #fff;
}

.attractions-columns {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.attractions-columns ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  flex: 1;
}

.attractions-columns li {
  font-size: 18px;
  padding: 6px 0;
  color: #ffffff;
  border-bottom: 1px solid #e7e7e7;
}

/* Responsive */
@media(max-width: 768px){
  .attractions-columns{
    flex-direction: column;
    gap: 25px;
  }
}





.macon-welcome-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.macon-welcome-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

.macon-text-content {
  text-align: center;
}

.macon-heading {
  font-size: 36px;
  margin-bottom: 30px;
}

.macon-iframe-wrapper {
  display: flex;
  justify-content: center;
}

.macon-iframe-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}






.macon-faq-section{
  padding:70px 0;
  background:#fafafa;
  font-family:'Arial',sans-serif;
}

.macon-faq-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 50px;
}

.macon-faq-subtitle{
  color:#003357;
  letter-spacing:2px;
  font-weight:600;
  display:block;
  margin-bottom:10px;
}

.macon-faq-title{
  font-size:34px;
  font-weight:700;
  color:#222;
  margin-bottom:15px;
}

.macon-faq-text{
  font-size:16px;
  color:#555;
}

.macon-faq-wrapper{
  max-width:1200px;        /* updated width */
  margin:0 auto;
}

/* FAQ BOX STYLE */
.faq-item{
  margin-bottom:20px;
  background:#fff;
  padding:15px 20px;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h4{
  margin-bottom:5px;
  color:#003357;
  font-size:18px;
}

.faq-item p{
  margin:0;
  font-size:15px;
  line-height:1.5;
  color:#444;
}

.faq-item a{
  color:#0066cc;
  text-decoration:underline;
}

.faq-item a:hover{
  color:#003357;
}










/* Reservation Bar */
.reservation-bar {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
      background: rgb(206 222 234);
  z-index: 10;
}

.reservation-bar-form {
  background: linear-gradient(90deg, #f4f4f4 0%, #ffffff 100%); /* Light grey gradient */
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px;
  max-width: 1400px;
  width: 95%;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  flex: 1 1 60px;
  min-width: 180px;
  margin: 0 10px;
}

.field label {
 font-family: 'Poppins', sans-serif; 
  font-weight: 600;
  color: #555; /* Dark grey for labels */
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.field input,
.field select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cedeea; /* Light grey border */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif; 
}

.field input:focus,
.field select:focus {
  border-color: #004B87; /* Deep Navy Blue on focus */
  box-shadow: 0 0 8px rgba(0, 51, 102, 0.3); /* Slight shadow effect */
  outline: none;
}

/* Button */
.reservation-bar-form button {
  background: #004B87; 
  color: #fff; /* White text */
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3); /* Shadow with deep blue */
  transition: background 0.3s ease, transform 0.3s ease;
  
    margin-top: 17px;
}

.reservation-bar-form button:hover {
  background: #002643; /* Darker navy blue on hover */
  transform: translateY(-2px); /* Slight movement on hover */
}

.reservation-bar-form button i {
  margin-right: 8px;
}


/* Responsive */
@media (max-width: 1024px) {
  .reservation-bar-form {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .reservation-bar-form {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .field {
    width: 100%;
    margin: 0 0 10px;
  }

  .reservation-bar-form button {
    width: 100%;
    margin-top: 8px;
  }
}



.amenities-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.text-content {
  text-align: left;
  color: #fff;
  font-size:18px;
}

.tagline {
  font-size: 18px;
  color: #888888;
  margin-bottom: 5px;
}

.heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.description {
  font-size: 18px;
  line-height: 1.7;
}















/* Main background block */
.macon-direction-block {
  padding: 60px 20px;
  background: #f0f4f8;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Heading area */
.macon-direction-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #15314b;
  font-weight: 700;
}

.macon-direction-header .macon-subtitle {
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #2878ff;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.macon-direction-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Outer card block */
.macon-direction-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 35px;
  text-align: left;
}

/* --- COORDINATE BADGE (Updated) --- */
.macon-coordinates {
  display: inline-block;
  background: #2878ff10;
  border-left: 5px solid #2878ff;
  padding: 18px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.macon-coordinates h4 {
  font-size: 20px;
  color: #15314b;
  font-weight: 600;
  margin: 0 0 6px;
}

.macon-coordinates p {
  margin: 0;
  font-size: 17px;
  color: #222;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  gap: 25px; /* puts Latitude & Longitude in 1 line */
}

/* --- Directions Form Styles --- */
.macon-direction-form {
  margin-top: 25px;
}

.macon-direction-form h4 {
  color: #15314b;
  margin-bottom: 15px;
}

.macon-form-group {
  margin-bottom: 18px;
}

.macon-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 15px;
}

.macon-input:focus {
  border-color: #2878ff;
  outline: none;
  box-shadow: 0 0 5px rgba(40, 120, 255, 0.3);
}

.macon-btn {
  display: inline-block;
  width: 100%;
  background: #2878ff;
  color: #fff;
  padding: 14px 0;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.macon-btn:hover {
  background: #1c5ed6;
}
