@media (max-width: 540px) {
  .nav__header {
    padding: 0.1rem 0.5rem !important;
    min-height: 80px !important;
    height: 44px !important;
  }
  .nav__logo .logo-white {
    max-width: 80px !important;
  }
}
/* Force logo-white to always show */
.nav__logo .logo-white {
  display: block !important;
}
/* Force mobile & tablet About section stacked layout to override desktop styles */
@media (max-width: 1023px) {
  .banner__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem 1rem !important;
    background: var(--extra-light) !important;
    border-radius: 2rem !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
  }
  .banner__image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
  }
  .banner__image img {
    width: 100% !important;
    max-width: 350px !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12) !important;
  }
  .banner__content {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 0.5rem !important;
  }
  .banner__btn {
    margin-top: 1.5rem !important;
  }
}
/* Mobile & Tablet: About section stacked layout */
@media (max-width: 1023px) {
  
  .banner__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  .banner__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  .banner__image img {
    width: 100%;
    max-width: 350px;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  }
  .banner__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0.5rem;
  }
  .banner__btn {
    margin-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  body {
    margin: 0;
    border: none;
    width: 100vw;
    overflow-x: hidden;
  }
  .nav__logo .logo-white {
    display: block !important;
    max-width: 80px !important;
    height: auto !important;
  }
  .book {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4rem auto;
    width: 100vw;
    min-height: 60vh;
  }
  .book__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .book__container form {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }
  .swiper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4rem auto;
    width: 80vw;
    min-height: 300px;
  }
  .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .customer__card {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
  }
}
/* Glowing text and helping hands background for footer impact message */

.impact-bg {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 8px #706363, 0 0 16px #f91919, 0 0 32px #ffa6005e;
  background:
    linear-gradient(135deg, #c68642 0%, #e7b98a 100%),
    url('https://www.transparenttextures.com/patterns/wood.png');
  background-blend-mode: multiply;
  background-size: cover;
  border-radius: 32px;
  box-shadow:
    0 8px 32px rgba(80, 50, 20, 0.25),
    0 0 0 8px #e7b98a44 inset,
    0 2px 24px 0px #b36b23a0;
  border: 4px solid #a67c52;
  overflow: hidden;
  outline: 2px solid #fff3e0;
  outline-offset: 6px;
  transition: box-shadow 0.3s, transform 0.3s;
  max-width: 400px;
  width: 90vw;
  min-width: 260px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.impact-bg:hover {
  box-shadow:
    0 16px 48px rgba(80, 50, 20, 0.35),
    0 0 0 12px #e7b98a66 inset,
    0 4px 32px 0px #b36b23a0;
  transform: scale(1.03);
}

/* Responsive centering for mobile, tablet, desktop */
@media (max-width: 540px) {
  .impact-bg {
    max-width: 95vw;
    min-width: 180px;
    font-size: 1rem;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .impact-bg .impact-logo {
    width: 44px;
    height: 44px;
    margin-bottom: 0.7rem;
  }
}
@media (min-width: 541px) and (max-width: 1023px) {
  .impact-bg {
    max-width: 340px;
    font-size: 1.1rem;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .impact-bg .impact-logo {
    width: 54px;
    height: 54px;
    margin-bottom: 0.9rem;
  }
}
@media (min-width: 1024px) {
  .impact-bg {
    max-width: 400px;
    font-size: 1.3rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .impact-bg .impact-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}

/* Logo inside wooden board */

.impact-bg .impact-logo {
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 48px;
  border-radius: 24px;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  gap: 0.5em;
}
.circle-btn i {
  font-size: 1.3em;
  background: linear-gradient(90deg, #ff0000, #ff9900, #00c3ff, #00ff6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 0.3em;
}
.circle-btn:hover {
  background: var(--primary-color-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  color: #fff;
}
/* Circular button style for READ MORE > links */
.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.circle-btn:hover {
  background: var(--primary-color-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  color: #fff;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #ff0000;
  --primary-color-dark: #bb0811;
  --text-dark: #171717;
  --text-light: #737373;
  --light: #e5e5e5;
  --extra-light: #fdfaf6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'heading';
  src: url('fonts/Magnificent Serif.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'button';
  src: url('fonts/Akademie\ Alte.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'buttons';
  src: url('fonts/LTSoul-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'headings';
  src: url('fonts/GrandHotel-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'title';
  src: url('fonts/Pianaforma.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'look';
  src: url('fonts/GrandHotel-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.section__header span {
  position: relative;
  isolation: isolate;
}

.section__header span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 100%;
  border-bottom: 4px solid var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background: linear-gradient(90deg, #fc1111 0%, #f0400f 50%, #ff690b 100%);
  border-radius: 5px 20px 5px 20px;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(90deg, #a8030b 0%, #e21111 50%, #ff0000 100%);
  border-color: #bb0811;
  box-shadow: 0px 10px 20px rgba(255, 0, 0, 0.15);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 0.3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ff310d; /* Changed to blue, update to any color you want */
}

.nav__logo .logo-dark {
  display: none;
  background-color: #ffffff; /* Same background color as .nav__header */
  max-width: 80px; /* Matches the size of .logo-white */
  border-radius: 50px; /* Optional: Adds rounded corners for consistency */
  padding: 0.5rem; /* Optional: Adds spacing inside the background */
}
@media (min-width: 768px) {
  .nav__logo .logo-dark {
    display: block; /* Ensure it is visible in dark mode */
  }
}

.nav__logo .logo-white {
  max-width: 40px;
}


.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: rgba(80, 78, 78, 0.953);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}
@media (min-width: 1024px) {
   
  nav {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-radius: 0 0 1.5rem 1.5rem;
    margin-bottom: 2rem;
    position: static;
    max-width: 400px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 10;
  }
  .nav__header {
    padding: 1.5rem 2rem;
    flex: 1;
    background: none;
  }
 
  /* .logo-white is now visible on all devices */
  .nav__logo .logo-dark {
    display: none;
  }
  .nav__menu__btn {
    display: none;
  }
  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav__links a {
    color: var(--text-dark);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    white-space: nowrap;
  }
  .nav__links a:hover {
    background: rgba(183, 71, 71, 0.251);
    color: #ff0202;
  }
}
.nav__links a {
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: none;
}

.header__container {
  display: flex; /* Use Flexbox for centering */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  height: 100dvh; /* Full viewport height */
  width: 100%; /* Full viewport width */
  padding: 0; /* Remove extra padding */
  margin: 0; 
}

.header__content{
  background-image: url(img/istockphoto-613253596-612x612.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.516); /* Adds a semi-transparent overlay */
  background-blend-mode: overlay;
  height: 100%;
  display: flex;
  flex-direction: column; /* Aligns items in a column */
  justify-content: center;
  align-items: center; /* Centers items vertically */
  padding: 0; /* Adds spacing inside the container */
  text-align: center; /* Centers the text */
  border-radius: 1rem; /* Adds rounded corners */
  color:rgb(255, 255, 255);
  width: 100%;
}
@media (min-width: 1024px) {
  .header__container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    width: 100%;
    padding: 0;
    margin: 0; /* Removed margin */
  }

}
/* Desktop view section and footer alignment fixes */
@media (min-width: 1024px) {
  /* Center and contain each section */
  .section__container {
    max-width: 1100px;
    margin: 0 auto 4rem auto; /* Center and add space below each section */
    padding: 4rem 2rem;
    box-sizing: border-box;
    background: transparent;
  }

  /* Header section: remove extra padding and keep content centered */
  .header__container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  

  /* Banner section (About) */
  .banner__container {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
  }
  .banner__image img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }
  .banner__content {
    text-align: left;
    padding-left: 2rem;
  }

  /* Menu and Service grids */
  .menu__grid,
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }

  /* Footer alignment */
  .footer__container {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: flex-start;
    padding: 3rem 2rem 1rem 2rem;
  }
  .footer__col {
    text-align: left;
  }
  .footer__logo img {
    margin-bottom: 1rem;
    max-width: 60px;
    display: block;
  }
  .footer__bar {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.2rem 0;
    color: var(--text-dark);
    background-color: #45454593;
    text-align: center;
    border-top: 2px solid rgba(255, 0, 0, 0.658);
    font-size: 1.1rem;
    position: relative;
  }
}

/* Add spacing between all sections for desktop */
@media (min-width: 1024px) {
  section.section__container,
  section.menu__container,
  section.service,
  section.banner,
  section.book {
    margin-bottom: 4rem;
  }
}
.header__content h1 {
  margin-bottom: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  color:rgba(255, 255, 255, 0.947);
}

.header__content h1 span {
  color: var(--primary-color);
}

.header__content p {
  margin-bottom: 2rem;
  font-size: 1.2rem; /* Default font size for larger screens */
  line-height: 1.5;
  color: whitesmoke;
  text-align: center;
  line-height: 1.5rem;
}


.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}



.header__btns .btn:nth-child(2) {
  color: white ;
  background-color: transparent;
}

.header__btns .btn:nth-child(2):hover {
  color: white;
  background-color: red;
}

/* Media query for tablets (width <= 768px) */
@media (max-width: 768px) {
  .header__content {
    padding: 3rem 1.5rem; /* Reduce padding for smaller screens */
  }

  .header__content h1 {
    font-size: 2.8rem; /* Adjust font size for tablets */
    line-height: 4rem;
  }

  .header__content p {
    font-size: 1rem; /* Adjust font size for tablets */
    line-height: 1.5rem;
  }
}

/* Media query for mobile devices (width <= 540px) */
@media (max-width: 540px) {
  .header__content {
    padding: 4.5rem 1rem 2rem 1rem; /* Increase top padding to move background image down */
  }
  .nav__header {
    min-height: 70px !important;
    height: 66px !important;
    padding: 2.05rem 0.5rem !important;
  }
  .nav__logo .logo-white,
  .nav__logo .logo-dark {
    max-width: 70px;
    height: auto;
  }
}

@media (min-width: 1024px) {
  /* Styles for desktop screens */
  .header__content {
    padding: 5rem 3rem; /* Add more padding for larger screens */
  }
}

.menu__container .section__header {
  margin-bottom: 4rem;
  text-align: center;
}

.menu__grid {
  margin-bottom: 4rem;
  display: grid;
  gap: 4rem 2rem;
}

.menu__card {
  padding: 2rem;
  padding-top: 0;
  text-align: center;
  background-color: var(--white);
  border-radius: 10rem 8rem 2rem 2rem;
  transition: 0.3s;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

.menu__card:hover {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.menu__card img {
  max-width: 180px;
  margin-inline: auto;
  border-radius: 100%;
  transform: translateY(-2rem);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.menu__card:hover img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.menu__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.menu__card p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-light);
}

.menu__card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu__card__footer .btn {
  font-weight: 600;
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--light);
}

.menu__card__footer .btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.menu__btn {
  text-align: center;
}


.service {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--extra-light);
}

.service::before {
  position: absolute;
  content: "";
  top: -4rem;
  left: 0;
  height: 8rem;
  width: 100%;
  background-color: var(--white);
  border-radius: 100%;
  z-index: 1;
}


.service__container .section__header {
  margin-bottom: 4rem;
  text-align: center;
}

.service__grid {
  display: grid;
  gap: 4rem 2rem;
}

.service__card {
  padding: 2rem;
  padding-top: 0;
  text-align: center;
  background-color: var(--white);
  border-radius: 10rem 8rem 5rem 5rem;
  transition: 0.3s;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

.service__card:hover {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.service__card div {
  max-width: 180px; /* Sets the size of the round container */
  aspect-ratio: 1; /* Ensures the container is a perfect circle */
  display: grid;
  place-content: center; /* Centers the image inside the container */
  margin-inline: auto; /* Centers the container horizontally */
  background-color: var(--white);
  border-radius: 50%; /* Makes the container round */
  transform: translateY(-2rem);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.481); /* Adds a subtle shadow */
  overflow: hidden; /* Ensures the image doesn't overflow the container */
}

.service__card img {
  width: 100%; /* Ensures the image fills the container */
  height: 100%; /* Ensures the image fills the container */
  object-fit: cover; /* Ensures the image maintains its aspect ratio and fills the container */
  border-radius: 50%; /* Ensures the image is round */
}
.service__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.service__card p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-light);
}

.service__card a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__card a:hover {
  color: var(--primary-color);
}

.banner {
  background-color: var(--extra-light);
  padding: 4rem 2rem; /* Adds spacing around the section */
}

.banner__container {
  display: grid;
  gap: 2rem;
  align-items: center; /* Centers items vertically */
  grid-template-columns: repeat(2, 1fr); /* Two columns layout */
  overflow: hidden;
}

.banner__image {
  text-align: center;
  /* Centers the image */
}

.banner__image img {
  max-width: 100%;
  border-radius: 5rem 2rem 5rem 2rem;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

.banner__content .section__header {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700; /* Makes the header bold */
  color: var(--text-dark);
}

.banner__content {
  text-align: left; /* Aligns text to the left */
}


.banner__content p {
  margin-bottom: 2rem;
  font-size: 1.2rem; 
  color: var(--text-light);
  line-height: 1.75rem;
}

.banner__btn {
  margin-top: 1rem;
}

.banner__btn .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner__btn .btn:hover {
  background-color: var(--primary-color-dark);
}
/* Media query for tablets (width <= 768px) */
@media (max-width: 768px) {
  .banner__container {
    grid-template-columns: 1fr; /* Stacks content vertically */
    text-align: center; /* Centers text and image */
  }

  .banner__image img {
    max-width: 70%; /* Reduces image size for tablets */
    margin-inline: auto; /* Centers the image */
  }

  .banner__content {
    text-align: center; /* Centers the text */
  }

  .banner__content .section__header {
    font-size: 2rem; /* Adjusts header size for tablets */
  }

  .banner__content p {
    font-size: 1rem; /* Reduces font size for tablets */
  }
}


/* Media query for mobile devices (width <= 540px) */
@media (max-width: 540px) {
  .banner {
    padding: 2rem 1rem; /* Reduces padding for smaller screens */
  }

  .banner__image img {
    max-width: 70%; /* Ensures the image scales properly */
  }

  .banner__content .section__header {
    font-size: 1.8rem; /* Further reduces header size for mobile */
  }

  .banner__content p {
    font-size: 0.9rem; /* Reduces paragraph font size for mobile */
    line-height: 1.6; /* Adjusts line spacing */
  }

  .banner__btn .btn {
    font-size: 0.9rem; /* Reduces button font size */
    padding: 0.5rem 1rem; /* Reduces button padding */
  }
}


.customer__container {
  display: grid;
  gap: 2rem;
}

.customer__image {
  position: relative;
  isolation: isolate;
}

.customer__image::before {
  position: absolute;
  content: "";
  width: 75%;
  height: 75%;
  left: 0;
  bottom: 0;
  border-radius: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.customer__image img {
  max-width: 550px;
  margin-inline: auto;
}

.customer__content {
  overflow: hidden;
}

.swiper {
  padding-top: 4rem;
  width: 95%;
  margin: auto;
}

.customer__card {
  position: relative;
  padding: 1rem;
  border: 5px solid var(--light);
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
  text-align: center; /* Centers the content */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer__card:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.customer__card__header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customer__card__header div {
  padding: 2px 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #20604e;
  background-color: #ecfdf5;
  border-radius: 1rem;
}


.customer__card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer__card__footer img {
  max-width: 100px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.customer__card__footer > div {
  padding-left: 1rem;
  border-left: 3px solid var(--primary-color);
}

.customer__card__footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.customer__card__footer h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}
/* Center alignment and consistent sizing for desktop view */
@media (min-width: 1024px) {
  .swiper {
    width: 60%; /* Reduces the width for better alignment */
  }

  .customer__card {
     /* Ensures all cards have the same width */
    margin: auto; /* Centers the card horizontally */
  }

  .customer__card__footer img {
    max-width: 80px; /* Slightly larger image for desktop */
  }

  .customer__card__footer h4 {
    font-size: 1.4rem; /* Increases heading size for better readability */
  }

  .customer__card__footer h5 {
    font-size: 1.2rem; /* Increases subheading size */
  }
  .customer__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three cards per row */
    gap: 2rem; /* Adds spacing between cards */
    justify-content: center; /* Centers the grid */
    align-items: center; /* Vertically aligns the cards */
  }
}


@media (max-width: 1023px) {
  .banner__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
  }
  .banner__image {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .banner__content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding-left: 2rem;
  }
  .banner__content p {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.75rem;
    text-align: left;
    max-width: 480px;
  }

  .banner__image img {
    max-width: 100%;
    border-radius: 5rem 2rem 5rem 2rem;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
  }
}
 .book {
  margin-block: 5rem;
  margin-top: -100px;
  background-image: url("assets/book.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.book__container form {
  max-width: 600px;
  padding: 1rem;
  display: grid;
  gap: 2rem;
  background-color: #565454;
  transform: translateY(10rem);
}

.book__container h4 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
}

.book__container .input__row {
  display: grid;
  gap: 1rem;
}

.book__container .input__group {
  display: grid;
  gap: 10px;
}

.book__container label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff !important;
}

/* Force white color for contact form labels */
.book__container label,
.book__container .input__group label,
.book__container .input__row label {
  color: #fff !important;
}


.book__container input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
    color: #222 !important;
    background: #b8b5b5b8 !important;
    border: 1px solid #b4acac;
    border-radius: 0.5rem;
}

.book__container .btn {
  width: fit-content;
  margin-left: auto;
}

.book__container form {
  padding: 2rem;
}

@media (width > 540px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book__container form {
    padding: 1.5rem;
  }

  .book__container .input__row:not(:last-child) {
    grid-template-columns: repeat(2, 1fr);
  }

/* Scrolling Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 1rem)); /* Scrolls the images left */
  }
}

/* Responsive Design */
@media (max-width: 768px) {
 .section__header {
    font-size: 2rem; /* Reduces font size for tablets */
  }

}
html, body {
    padding: 0;
  margin: 0;
  width: 100vw;
  overflow-x: hidden; /* Prevent horizontal scrolling issues */
}

.scroll-reveal {
  will-change: transform, opacity; /* Optimizes animations */
  visibility: visible !important; /* Ensures visibility on mobile */
}
@media (max-width: 540px) {
 .section__header {
    font-size: 1.8rem; /* Further reduces font size for mobile */
  }

  
}

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}


.footer__container {
  display: grid;
  gap: 4rem 2rem;

}


.footer__logo img {
  margin-bottom: 1rem;
  max-width: 50px;
}

.footer__col p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--text-light);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}


.footer__bar {
  padding: 1rem;
  color: var(--text-dark-);
  background-color: #45454593;
  text-align: center;
  border-top: 2px solid rgba(255, 0, 0, 0.658);
}

@media (width > 540px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo-white {
    display: none;
  }

  .nav__logo .logo-dark {
    display: flex;
    max-width: 50px;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav__btns .btn {
    padding: 4px 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
    background-color: transparent;
    border-radius: 100%;
    border: none;
  }

  .nav__btns .btn:hover {
    box-shadow: 0 0 20px rgba(249, 85, 85, 0.3);
  }

  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__content {
    grid-area: 1/1/2/2;
  }

  .header__top {
    margin-inline-start: unset;
  }

  .header__container :is(h1, p) {
    text-align: left;
  }

  .header__btns,
  .header__flex {
    justify-content: flex-start;
  }

  .menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .customer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .footer__links i {
    margin-right: 8px;
  }
  
  
  .customer__card {
    padding: 1.5rem;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
  }
}

@media (width > 1024px) {
  .customer__card {
    padding: 2rem;
  }
}

.footer__bar .footer-dev-link {
  color: #d83d3d;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bar .footer-dev-link:hover {
  color: #41fff6e5;
  text-decoration: underline;
}

@font-face {
  font-family: 'nav';
  src: url('GrandHotel-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}