@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;600;700;800;900&display=swap');

*
{
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
p
{
	font-weight: 300;
	color: #111;
}

html {
  scroll-behavior: smooth;
}

.menu-wrapper {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 1400px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.blurred-contact {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 3rem;
  margin: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.glass-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body {
  background-image: url(../img/Background1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.banner-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slider .nav.prev {
  left: 10px;
}

.banner-slider .nav.next {
  right: 10px;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../img/Background.jpg) center/cover no-repeat;
  overflow: hidden;
}

.banner-slider .text-slide .content {
  position: relative;
  top: -60px; 
  text-align: center;
}

.banner-slider .dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Optional: make sure .content doesn’t shift on smaller screens */
@media (max-width: 768px) {
  .banner-slider .text-slide .content {
    top: -30px; /* less lift on smaller screens */
  }
  .banner-slider .dots {
    bottom: 40px;
  }
}

.banner-slider.image-present .text-slide {
  display: none;
}

.banner-slider .slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  width: 100%;
}

.banner-slider .slide.active {
  display: flex;
  opacity: 1;
  position: relative;
}

.banner-slider:not(.text-visible) .text-slide {
  display: none !important;
}

.banner {
  width: 100%;
  min-height: 100vh;
  background: url(../img/Background.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* semi-transparent black overlay */
  z-index: 1;
}

.banner .content {
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.banner .content h2
{
	font-size: 20em;
	color: #fff;
	text-transform: capitalize;
}

.banner .content p
{
	font-size: 1em;
	color: #fff;
}

.banner .content h2
{
  font-size: 3em;
  color: #fff;
}

.slide .content .btn {
  position: relative;
  z-index: 5; /* ensure it's above arrows */
}

.slide img {
  object-fit: contain;
  border-radius: 25px;
  width: 100%;
  height: auto;
  max-width: 700px;
  transition: transform 0.5s ease-in-out;
  margin: 0 auto;
  display: block;
  z-index: 1;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide img:hover {
  transform: scale(1.03);
}

.text-slide:not(.active) .content {
  display: none !important;
}

.text-slide h2 {
  font-size: 4rem; /* or adjust as needed */
  max-width: 1500px; /* wider to allow more words per line */
  line-height: 1.4;
  margin: 0 auto;
  text-align: center;
}

.text-slide .btn {
  margin-top: 30px;
  background: #d9480f;
  color: white;
  padding: 18px 36px;         /* Increased padding for larger button */
  border-radius: 40px;        /* Optional: larger for more pill-like shape */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;          /* Makes the text inside the button larger */
}

/* Nav Areas */
.nav {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  z-index: 3;
}
.nav.prev { left: 0; }
.nav.next { right: 0; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.dots span.active {
  background: white;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide.scaled img {
  transform: scale(0.85);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.slide-label {
  z-index: 2;
  position: relative;
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.promo-slide .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 20px;
  border-radius: 12px;
  margin-left: 20px;
  max-width: 400px;
}

.promo-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.promo-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slide-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.promo-text-container {
  flex: 1;
  max-width: 800px;
  padding: 20px;
  text-align: left;
  color: white;
  background: rgba(0, 0, 0, 0.5); /* Optional: background for contrast */
  border-radius: 10px;
}

.promo-title {
  font-size: 2.6rem; /* Bigger title */
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
}

.promo-desc {
  font-size: 1.3rem; /* Bigger description */
  line-height: 1.6;
  color: #f0f0f0;
}

.slide img.slide-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.text-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.6s ease-in-out;
}

.text-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.text-slide .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  font-size: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes bannerSlide {
  0%, 11%   { transform: translateX(0%); }
  12%, 25%  { transform: translateX(-100%); }
  26%, 39%  { transform: translateX(-200%); }
  40%, 53%  { transform: translateX(-300%); }
  54%, 67%  { transform: translateX(-400%); }
  68%, 81%  { transform: translateX(-500%); }
  82%, 100% { transform: translateX(-600%); }
}

.quote-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem 2rem;
}

.quote-container.flipped {
  flex-direction: row-reverse;
}

.imgBx img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.imgBx {
  flex: 1;
  display: flex;
  justify-content: center;
}

.quote-text {
  flex: 1;
  max-width: 50%;
}

.quote-text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #333;
}

.quote-text h1 {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111;
}

.quote-text p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.btn
{
	font-size: 1em;
	color: #fff;
	background: #FFBD2B;
	display: inline-block;
	padding: 10px 30px;
	margin-top: 50px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	border-radius: 12px;
	transition: 0.5s;
}

.btn:hover
{
	letter-spacing: 6px;
}

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px;
	z-index: 10000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s;
}

header.sticky
{
	background: #fff;
	padding: 10px 60px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

header .logo
{
	color: #fff;
	font-weight: 700;
	font-size: 2em;
	text-decoration: none;
}

header.sticky .logo
{
	color: #111;
}

header .logo span
{
	color: #FFBD2B;
}

header .navigation
{
	display: flex;
}

header .navigation li
{
	list-style: none;
	margin-left: 30px;
}

header .navigation li a
{
	text-decoration: none;
	color: #fff;
	font-weight: 400;
}

header.sticky .navigation li a
{
	color: #111;
}

header .navigation li a:hover
{
	color: #FFBD2B;
}

section
{
	padding: 100px;
}

.row
{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.row .col50
{
	position: relative;
	width: 48%;
}

.titleText
{
	color: #111;
	font-size: 2em;
	font-weight: 300;
}

.titleText span
{
	color: #FFBD2B;
	font-weight: 700;
	font-size: 1.5em;
}

.imgBx img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
}

.imgBx {
  flex: 1;
  display: flex;
  justify-content: center;
}

.title
{
	text-align: center;
}

.menu .content
{
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 40px;
}

.menu .title {
  margin-bottom: 2rem;
}

.menu-footer {
  text-align: center;
  margin-top: 2rem;
}

.menu .content .box .imgBx img
{
	width: 340px;
	margin: 20px;
	border: 15px solid #fff;
	box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}

.menu .content .box .imgBx
{
	position: relative;
	width: 100%;
	height: 300px;
}

.menu .content .box .imgBx img
{
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.menu .content .box .text
{
	padding: 15px 0 5px;
}

.menu .content .box .text h3
{
	font-weight: 400;
	color: #111;
}

.menu-btn {
  display: inline-block;
  background-color: #4B927B;
  color: white;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.menu-btn:hover,
.menu-btn:focus {
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

.white .titleText,
.white p
{
	color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.contactForm {
  flex: 1;
  min-width: 300px;
  background: #ffffffcc; /* semi-transparent white */
  padding: 2rem;
  border-radius: 20px; /* Rounded box */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm textarea,
.contactForm input[type="submit"] {
  border-radius: 12px; /* Rounded inputs */
  border: 1px solid #ccc;
  padding: 0.8rem;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contactImage {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactImage img {
  max-width: 70%;
  height: auto;
  border-radius: 20px;
  opacity: 0.9;
}

.contact
{
	background: #ffffffcc;
	background-size: cover;
}

.contactForm
{
	padding: 75px 50px;
	background: #fff;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	margin-top: 50px;
}

.contactForm h3
{
	color: #111;
	font-size: 1.2em;
	margin-bottom: 20px;
	font-weight: 500;
}

.contactForm .inputBox
{
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea
{
	width: 100%;
	border: 1px solid #555;
	padding: 10px;
	color: #111;
	outline: none;
	font-size: 16px;
	font-weight: 300;
	resize: none;
}

.contactForm .inputBox input[type="submit"]
{
	font-size: 1em;
	color: #fff;
	background: #FFBD2B;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	transition: 0.5s;
	max-width: 100px;
	font-weight: 500;
	border: none;
	cursor: pointer;
}

.copyrightText
{
	padding: 8px 40px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	text-align: center;
}

.copyrightText p
{
	color: #333;
}

.copyrightText a
{
	color: #FFBD2B;
	font-weight: 500;
	text-decoration: none;
}

/*-------- Tablet scren ------------*/
@media screen and (max-width:  991px)
{
	header,
	header.sticky
	{
		padding: 10px 20px;
	}

	header .navigation
	{
		display: none;
	}

	header .navigation.active
	{
		width: 100%;
		height: calc(100% - 68px);
		position: fixed;
		top: 68px;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		background: #fff;
	}

	header .navigation li
	{
		margin-left: 0;
	}

	header .navigation li a
	{
		text-decoration: none;
		color: #111;
		font-size: 1.6em;
		font-weight: 300;
	}

	.menuToggle
	{
		position: relative;
		width: 40px;
		height: 40px;
		background: url(../img/Background2.png);
		background-size: 30px;
		background-repeat: no-repeat;
		background-position: center;
		cursor: pointer;
	}

	.menuToggle.active
	{
		background: url(../img/Background2.png);
		background-size: 25px;
		background-repeat: no-repeat;
		background-position: center;
	}

	header.sticky .menuToggle
	{
		filter: invert(1);
	}

	section
	{
		padding: 20px;
	}

	.row
	{
		flex-direction: column;
	}

	.row .col50
	{
		width: 100%;
	}

	.col50 .imgBx
	{
		margin-top: 30px;
	}

	.menu .content
	{
		margin-top: 20px;
	}

	.menu .content .box
	{
		margin: 10px;
	}

	.menu .content .box .imgBx
	{
		height: 260px;
	}

	.title
	{
		text-align: center;
	}

	.titleText
	{
		font-size: 1.8em;
		line-height: 1.5em;
		margin-bottom: 15px;
		font-weight: 300;
	}
}

/*--------- Mobile screen ----------*/
@media screen and (max-width: 440px)
{
	header.sticky
	{
		padding: 10px 20px;
	}

	.testimonials .content .box
	{
		margin: 10px;
		padding: 20px;
	}

	.contactForm
	{
		padding: 35px 40px;
		margin-top: 20px;
		margin-bottom: 30px;
	}
}

.hero-banner {
  position: relative;
  background: #fff;
  padding-top: 80px;
  text-align: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  clip-path: ellipse(100% 45% at 50% 0%);
  background: #fff;
  padding-bottom: 4rem;
}

.hero-image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}

.hero-image-wrapper h1 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFBD2B;
  text-shadow: 1px 1px 2px #fff;
}

.cta-btn {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 12px 28px;
  background: #1db954;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  display: flex;
  align-items: center;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
  line-height: 1; /* Ensures vertical centering */
  padding: 8px 0;
}


.order-online-btn {
  background-color: #00D54B;
  color: white !important;
  padding: 15px 40px; 
  font-size: 15px;  
  border: 7px solid #00D54B;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-block;
  line-height: 1;
}

.order-online-btn:hover,
.order-online-btn:focus,
.order-online-btn:active {
  transform: translateY(2px);
  color: white !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}