/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--secondary-gradient);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-logo {
  margin-right: 30px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  position: relative;
  margin: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #ffa200;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  display: block;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffa200;
  text-decoration: none;
  padding: 10px 15px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-gradient);
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: rgba(255, 107, 0, 0.2);
  color: var(--accent-color);
  padding-left: 25px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icon {
  color: #ffa200;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-icon:hover {
  background: #ffa200;
  color: #fff;
  transform: translateY(-3px);
}

.theme-toggle {
  background: transparent;
  border: none;
  color: #ffa200;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: #ffa200;
  color: #fff;
  transform: rotate(15deg);
}

.btn-order {
  background: var(--primary-gradient);
  color: var(--text-white);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-order:hover::before {
  left: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  animation: fadeInDown 0.5s ease forwards;
}

.nav-item {
  animation: fadeInDown 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

/* ===== DROPDOWN ANIMATION ===== */
.dropdown-menu {
  animation: fadeIn 0.3s ease forwards;
}

/* ===== LIGHT THEME ===== */
body.light-theme .header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.light-theme .nav-link {
  color: #333;
}

body.light-theme .dropdown-toggle {
  color: #333;
}

body.light-theme .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .dropdown-link {
  color: #333;
}

body.light-theme .nav-icon {
  color: #333;
}

body.light-theme .theme-toggle {
  color: #333;
}

body.light-theme .bar {
  background: #333;
}

/* ===== LOGIN/SIGNUP PAGES ===== */
.login-container, .signup-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

body.light-theme .login-container,
body.light-theme .signup-container {
  background: rgba(255, 255, 255, 0.9);
}

.input-group input {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

body.light-theme .input-group input {
  background: #f0f0f0;
  color: var(--text-primary);
}

.input-group input:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}

/* ===== HERO SECTION ===== */
.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--bg-light);
}

body.light-theme .features {
  background: var(--bg-white);
}

.feature-card {
  background: var(--bg-white);
  box-shadow: var(--shadow-light);
}

.feature-icon {
  background: var(--primary-gradient);
  color: var(--text-white);
}

/* ===== CHEFS SECTION ===== */
.chef-card {
  background: var(--secondary-gradient);
}

body.light-theme .chef-card {
  background: linear-gradient(135deg, var(--bg-white), #f8f9fa);
}

.social-icon {
  color: var(--accent-color);
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.chef-info h3 {
  color: var(--text-white);
}

body.light-theme .chef-info h3 {
  color: var(--text-primary);
}

.chef-title {
  color: var(--primary-color);
}

.specialty {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary-color);
}

/* ===== ORDER PAGE ===== */
.cart-section, .menu-item {
  background: var(--secondary-gradient);
  color: var(--text-white);
}

.item-price {
  color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--secondary-gradient);
}

.contact-icon {
  color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary-gradient);
}

.footer-logo h2 {
  color: var(--primary-color);
}

.footer-section h3 {
  color: var(--primary-color);
}

.social-icon:hover {
  background: var(--primary-color);
}
/* ===== ROOT VARIABLES ===== */
:root {
  /* Primary Colors */
  --primary-color: #ff6b00;
  --primary-dark: #e56d00;
  --primary-light: #ff8c00;
  --primary-gradient: linear-gradient(45deg, #ff6b00, #ff8c00);
  
  /* Secondary Colors */
  --secondary-color: #2c3e50;
  --secondary-dark: #1a1a2e;
  --secondary-gradient: linear-gradient(135deg, #2c3e50, #1a1a2e);
  
  /* Accent Colors */
  --accent-color: #ffa200;
  --accent-light: #ffa200;
  
  /* Neutral Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #e0e0e0;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  
  /* State Colors */
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  
  /* Border & Shadow */
  --border-radius: 10px;
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ===== THEME VARIABLES ===== */
[data-theme="light"] {
  --bg-primary: var(--bg-white);
  --bg-secondary: var(--bg-light);
  --text-primary: #333333;
  --text-secondary: #666666;
  --shadow: var(--shadow-light);
}

[data-theme="dark"] {
  --bg-primary: var(--secondary-dark);
  --bg-secondary: var(--secondary-color);
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --shadow: var(--shadow-dark);
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}





.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--secondary-gradient);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-logo {
  margin-right: 30px;
}

.nav-logo img {
  height: 50px;
  width: 100px;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #ffa200;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  display: block;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
 color: var(--text-white);


}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color:#ffa200;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-gradient);
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.dropdown-link {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
   color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: rgba(255, 107, 0, 0.2);
 color: var(--accent-color);
  padding-left: 25px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icon {
  color: #ffa200;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-icon:hover {
  background: #ffa200;
  color: #fff;
  transform: translateY(-3px);
}

.nav-icon, .theme-toggle {
      color: #ffa200;


}

.theme-toggle {
  background: transparent;
  border: none;
  color: #ffa200;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: #ffa200;
  color: #fff;
  transform: rotate(15deg);
}


.nav-icon:hover, .theme-toggle:hover {
  background: #ffa200;
  color: #fff;
}

.btn-order {
  background: var(--primary-gradient);
  color: var(--text-white);
}

.nav-button .btn-order {
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-order:hover::before {
  left: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  animation: fadeInDown 0.5s ease forwards;
}

.nav-item {
  animation: fadeInDown 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

/* ===== DROPDOWN ANIMATION ===== */

.dropdown-menu {
  animation: fadeIn 0.3s ease forwards;
}

/* ===== LIGHT THEME ===== */

body.light-theme .header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.light-theme .nav-link {
  color: #333;
}

body.light-theme .dropdown-toggle {
  color: #333;
}

body.light-theme .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .dropdown-link {
  color: #333;
}

body.light-theme .nav-icon {
  color: #333;
}

body.light-theme .theme-toggle {
  color: #333;
}

body.light-theme .bar {
  background: #333;
}

/* ===== LOGIN/SIGNUP PAGES ===== */

.login-section, .signup-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 20px;
  position: relative;
  overflow: hidden;
}

.login-section::before, .signup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bgAnimation 20s infinite alternate;
  z-index: -2;
}

.login-section::before {
  background-image: url('../images/q.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.signup-section::before {
  background-image: url('../images/p.jpg');
}

.login-section::after, .signup-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(26, 26, 46, 0.9)); */
  z-index: -1;
}

body.light-theme .login-section::after, 
body.light-theme .signup-section::after {
  background: rgba(245, 245, 245, 0.9);
}

@keyframes bgAnimation {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  text-align: center;
  margin: auto;

  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  /* animation: float 6s ease-in-out infinite; */
  position: relative;
  z-index: 1;
}

 .signup-container {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  text-align: center;

  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  /* animation: float 6s ease-in-out infinite; */
  position: relative;
  z-index: 1;
}


body.light-theme .login-container, 
body.light-theme .signup-container {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.login-logo, .signup-logo {
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}

.login-logo img, .signup-logo img {
  height: 60px;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.login-logo h2, .signup-logo h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

body.light-theme .login-logo h2, 
body.light-theme .signup-logo h2 {
  color: #333;
}

.login-form, .signup-form {
  text-align: left;
}

.input-group {
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
}

.input-group:nth-child(1) { animation-delay: 0.1s; }
.input-group:nth-child(2) { animation-delay: 0.2s; }
.input-group:nth-child(3) { animation-delay: 0.3s; }
.input-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

body.light-theme .input-group label {
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

body.light-theme .input-group input {
  background: #f0f0f0;
  color: #333;
}

.input-group input:focus {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px #ff6b00;
}

body.light-theme .input-group input:focus {
  background: #e0e0e0;
}

.login-form button, .signup-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  animation: fadeIn 1s ease 0.5s forwards;
  opacity: 0;
  font-family: 'Poppins', sans-serif;
}

.login-form button:hover, .signup-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.login-form p, .signup-form p {
  text-align: center;
  margin-top: 25px;
  color: #ccc;
  animation: fadeIn 1s ease 0.7s forwards;
  opacity: 0;
  font-family: 'Poppins', sans-serif;
}

body.light-theme .login-form p, 
body.light-theme .signup-form p {
  color: #666;
}

.link {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.link:hover {
  text-decoration: underline;
}

/* ===== HERO SLIDESHOW SECTION ===== */

.hero-slideshow {
  height: 100vh;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;

}

/* Slides */
.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.slide.active {
  display: block;
}

/* Default slides (for index.html) */
.slide:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/chefsbg1.jpg');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

.slide:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/gallarybg1.jpg');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

.slide:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/chefsbg5.jpg');
                 background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

/* Slides for our-chefs.html */
.chefs-slideshow .slide:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/chefsbg1.jpg');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

.chefs-slideshow .slide:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/chefsbg2.webp');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

.chefs-slideshow .slide:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/chefsbg3.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

/* Slides for gallery.html */
.gallery-slideshow .slide:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/gallarybg1.jpg');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

/* Slides for reservation.html */
.reservation-slideshow .slide:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/bg.jpg');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
}

.slide-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.slide-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  font-family: sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.2s forwards;
  opacity: 0;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  max-width: 700px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Position the "next button" to the right */
.next {
  right: 20px;
  border-radius: 50%;
}

.prev {
  left: 20px;
  border-radius: 50%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(255, 107, 0, 0.8);
  transform: scale(1.1);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  backdrop-filter: blur(5px);
}

.active, .dot:hover {
  background-color: #ff6b00;
  transform: scale(1.2);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* ===== FEATURES SECTION ===== */

.features {
  padding: 100px 0;
  background: #f9f9f9;
  width: 100%;
}

body.light-theme .features {
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 15px;
  width: 100%;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

body.light-theme .feature-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .feature-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 30px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* ===== CHEFS SECTION ===== */

.chefs-section {
  padding: 120px 0 80px;
  background: #f9f9f9;
  width: 100%;
}

body.light-theme .chefs-section {
  background: #fff;
}

.chefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.chef-card {
  background: linear-gradient(135deg, #2c3e50, #1a1a2e);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  text-align: center;
}

body.light-theme .chef-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.chef-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.chef-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chef-card:hover .chef-image img {
  transform: scale(1.1);
}

.chef-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chef-card:hover .chef-overlay {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== LOADER ===== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 8px solid #d1914b;
  box-sizing: border-box;
  --c:no-repeat radial-gradient(farthest-side, #d64123 94%,#0000);
  --b:no-repeat radial-gradient(farthest-side, #000 94%,#0000);
  background:
    var(--c) 11px 15px,
    var(--b) 6px 15px,    
    var(--c) 35px 23px,
    var(--b) 29px 15px,    
    var(--c) 11px 46px,
    var(--b) 11px 34px,    
    var(--c) 36px 0px,
    var(--b) 50px 31px,
    var(--c) 47px 43px,
    var(--b) 31px 48px,    
    #f6d353; 
  background-size: 15px 15px,6px 6px;
  animation: l4 3s infinite;
}
@keyframes l4 {
  0%     {-webkit-mask:conic-gradient(#0000 0     ,#000 0)}
  16.67% {-webkit-mask:conic-gradient(#0000 60deg ,#000 0)}
  33.33% {-webkit-mask:conic-gradient(#0000 120deg,#000 0)}
  50%    {-webkit-mask:conic-gradient(#0000 180deg,#000 0)}
  66.67% {-webkit-mask:conic-gradient(#0000 240deg,#000 0)}
  83.33% {-webkit-mask:conic-gradient(#0000 300deg,#000 0)}
  100%   {-webkit-mask:conic-gradient(#0000 360deg,#000 0)}
}

.loader-text {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
}

.social-icon {
  color: #ffa200;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chef-card:hover .social-icon {
  transform: translateY(0);
  opacity: 1;
}

.social-icon:nth-child(1) { transition-delay: 0.1s; }
.social-icon:nth-child(2) { transition-delay: 0.2s; }
.social-icon:nth-child(3) { transition-delay: 0.3s; }
.social-icon:nth-child(4) { transition-delay: 0.4s; }

.social-icon:hover {
  background: #ff6b00;
  color: white;
  transform: translateY(-5px) !important;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.chef-info {
  padding: 25px 20px;
}

.chef-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
}

body.light-theme .chef-info h3 {
  color: #333;
}

.chef-title {
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.chef-bio {
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

body.light-theme .chef-bio {
  color: #666;
}

.chef-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.specialty {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* ===== PHILOSOPHY SECTION ===== */

.philosophy-section {
  padding: 80px 0;
  width: max-content;
  background: linear-gradient(135deg, #2c3e50, #1a1a2e);
  color: white;
  width: 60%;
  margin: auto;
}

.philosophy-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.philosophy-text {
  flex: 1;
}

.philosophy-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #ff6b00;
}

.philosophy-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

.philosophy-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #ff6b00;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.stat-item p {
  font-size: 1rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.philosophy-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.philosophy-image:hover img {
  transform: scale(1.05);
}

/* ===== ORDER PAGE STYLES ===== */

.order-section {
  padding: 120px 0 50px;
  background: #f9f9f9;
  min-height: 100vh;
}

body.light-theme .order-section {
  background: #fff;
}

.order-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.menu-grid {
  flex: 3;
}

.cart-section {
  flex: 1;
   background: linear-gradient(135deg, #2c3e50, #1a1a2e);
  /* width: 600px; */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 100px;
  color:#fff;
}

body.light-theme .cart-section {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-bottom: 10px;
}

.menu-category h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #ff6b00;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.menu-item {
    background: linear-gradient(135deg, #2c3e50, #1a1a2e);

  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  color: #fff;
}

body.light-theme .menu-item {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.item-image {
  height: 180px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .item-image img {
  transform: scale(1.05);
}

.item-details {
  padding: 20px;
}

.item-details h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
    color: #fff;

  font-family: 'Playfair Display', serif;
}

.item-details p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 15px;
}

.item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-quantity {
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

body.light-theme .btn-quantity {
  background: #f0f0f0;
}

.btn-quantity:hover {
  background: #ff6b00;
  color: white;
  border-color: #ff6b00;
}

.quantity {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.btn-add {
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  flex: 1;
  font-size: 0.9rem;
}

.btn-add:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Cart Styles */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.cart-count {
  background: #ff6b00;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.empty-cart {
  text-align: center;
  padding: 30px 0;
  color: #999;
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ddd;
}

.empty-cart p {
  margin: 5px 0;
  font-family: 'Poppins', sans-serif;
}

.cart-summary {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.2rem;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.total .total-price {
  color: #ff6b00;
  font-size: 1.3rem;
}

.btn-checkout {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* ===== RESERVATION SECTION ===== */

.reservation-section {
  padding: 100px 0 80px;
  background: #f9f9f9;
  width: 100%;
}

body.light-theme .reservation-section {
  background: #fff;
}

.reservation-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.reservation-form-container {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-theme .reservation-form-container {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-theme .info-card,
body.light-theme .reservation-form-container {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: #ff6b00;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card ul li {
  padding: 5px 0;
  color: #666;
  font-family: 'Poppins', sans-serif;
}

.info-card p {
  color: #666;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.reservation-form .form-group {
  margin-bottom: 20px;
}

.reservation-form .form-row {
  display: flex;
  gap: 20px;
}

.reservation-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.reservation-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

body.light-theme .reservation-form input,
body.light-theme .reservation-form select,
body.light-theme .reservation-form textarea {
  background: #f9f9f9;
  border-color: #eee;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #1a1a2e);
  color: white;
  width: 100%;
}

.contact-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff6b00;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.contact-details p {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
}

.contact-form-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.3);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== FOOTER STYLES ===== */

.footer {
  position: relative;
  background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(26,26,46,0.85)),
  url('../images/footer-illustration.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
   padding: 70px 0 0;
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ===== Delivery Bike Animation ===== */
.footer .deliv {
  position: absolute;
  bottom: 1px;
  left: -200px; 
  width: 180px;
  height: auto;
  animation: deliveryMove 20s linear infinite;
}

/* Animation Keyframes */
@keyframes deliveryMove {
  0% {
    transform: translateX(0) rotate(0deg)  scaleX(-1);
  }
  50% {
    transform: translateX(calc(100vw + 200px)) rotate(5deg)  scaleX(-1);
  }
  51% {
    opacity: 1; 
    transform: translateX(calc(100vw + 200px)) rotate(0deg)  scaleX(-1);
  }
  52% {
    opacity: 0;
    transform: translateX(-200px)  scaleX(-1); 
  }
  53% {
    opacity: 1; 
  }
  100% {
    transform: translateX(calc(100vw + 200px)) rotate(5deg)  scaleX(-1);
  }
}



.container-footer {
  background-image: url('../images/footer-illustration.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
  width: 100%;
}

.footer-section {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logo img {
  height: 50px;
  margin-right: 15px;
    transform: scaleY(1);
}

.footer-logo h2 {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ff6b00;
}

.footer-text {
  margin-bottom: 25px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #ff6b00;
  transform: translateY(-5px);
}

.footer-section h3 {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #ff6b00;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #ff6b00;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section ul li a:hover {
  color: #ff6b00;
  padding-left: 5px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.footer-section ul li span:first-child {
  font-weight: 600;
}

.footer-section.contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-section.contact ul li i {
  color: #ff6b00;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 1s ease forwards;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  width: 100%;
}

.footer-bottom p {
  color: #aaa;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

/* ===== SMOOTH SCROLL ANIMATION ===== */

html {
  scroll-behavior: smooth;
}

/* ===== HOVER ANIMATIONS ===== */

.footer-section.links ul li a,
.footer-section.hours ul li span,
.footer-section.contact ul li {
  transition: all 0.3s ease;
}

.footer-section.links ul li a:hover,
.footer-section.hours ul li:hover span,
.footer-section.contact ul li:hover {
  transform: translateX(5px);
}

/* ===== RESPONSIVE LOGIN/SIGNUP ===== */

@media (max-width: 600px) {
  .login-container, .signup-container {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .login-logo h2, .signup-logo h2 {
    font-size: 1.3rem;
  }
  
  .input-group {
    margin-bottom: 1.2rem;
  }
  
  .input-group input {
    padding: 14px 12px;
    font-size: 1rem;
  }
  
  .login-form button, .signup-form button {
    padding: 16px;
    font-size: 1.1rem;
  }
  
  .login-form p, .signup-form p {
    margin-top: 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .login-container, .signup-container {
    padding: 1.2rem;
  }
  
  .login-logo h2, .signup-logo h2 {
    font-size: 1.1rem;
  }
  
  .input-group input {
    padding: 12px 10px;
    font-size: 0.95rem;
  }
  
  .login-form button, .signup-form button {
    padding: 14px;
    font-size: 1rem;
  }
}

/* ===== GALLERY SECTION ===== */

.gallery-section {
  padding: 100px 0 80px;
  background: #f9f9f9;
  width: 100%;
}

body.light-theme .gallery-section {
  background: #fff;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #ff6b00;
  color: #ff6b00;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  background: white;
}

body.light-theme .gallery-item {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 20px;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.overlay-content p {
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.overlay-content .btn-secondary {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #1a1a2e);
  color: white;
  width: 100%;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 1s ease;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 3px solid #ff6b00;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
}

.testimonial-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.rating {
  color: #ff6b00;
}

.rating i {
  margin: 0 2px;
}







    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100vh;
      width: 100%;
      padding: 50px 10%;
      position: relative;
      overflow: hidden;
      background-image: url('../images/bg-hero.jpg');
      background-position: center;
      background-size: cover;
    }

    /* Text Section */
    .hero-text {
      max-width: 50%;
      border: 3px solid #ffffff;
      padding: 100px  50px;
      z-index: 2;
      animation: fadeIn 2s ease-in-out;
      background: rgba(255, 255, 255, 0.1); 
      backdrop-filter: blur(10px); 
      -webkit-backdrop-filter: blur(10px); 
      border: 1px solid rgba(255,255,255,0.2); 
    }

    .hero-text h1 {
      font-size: 3.5rem;
      color: #ff6b00;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 1.3rem;
      color: #ffffff;
      line-height: 1.6;
    }

    /* Rotating Table Section (Half visible circle) */
    .rotating-table {
      position: absolute;
      top: 50%;
      right: -25% !important;
      width: 1000px;
      height: 1000px;
       background: rgba(255, 255, 255, 0.1); 
      backdrop-filter: blur(10px); 
      -webkit-backdrop-filter: blur(10px); 
      border: 1px solid rgba(255,255,255,0.2); 
      border-radius: 50%;
      transform: translateY(-50%);
      animation: rotateTable 20s linear infinite;
      transform-origin: center center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Dish containers equally spaced around circle */
    .dish {
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
      transform-origin: 0 0;
    }

    /* Place dishes at equal angles (90° apart) */
.dish:nth-child(1) {
  background-image: url('../images/promo-4.png');
  background-position: center;
  background-size: cover;
  transform: rotate(0deg) translate(0, -330px) rotate(0deg);
  box-shadow: 2px 2px 20px #f45900;
}

.dish:nth-child(2) {
  background-image: url('../images/food-menu-1.png');
  background-position: center;
  background-size: cover;
  transform: rotate(60deg) translate(0, -330px) rotate(-60deg);
  box-shadow: 2px 2px 20px #1a1a2e;

}

.dish:nth-child(3) {
  background-image: url('../images/food-menu-4.png');
  background-position: center;
  background-size: cover;
  transform: rotate(120deg) translate(0, -330px) rotate(-120deg);
  box-shadow: 2px 2px 20px #f45900;

}

.dish:nth-child(4) {
  background-image: url('../images/food-menu-5.png');
  background-position: center;
  background-size: cover;
  transform: rotate(180deg) translate(0, -330px) rotate(-180deg);
  box-shadow: 2px 2px 20px #1a1a2e;

}

.dish:nth-child(5) {
  background-image: url('../images/promo-2.png');
  background-position: center;
  background-size: cover;
  transform: rotate(240deg) translate(0, -330px) rotate(-240deg);
  box-shadow: 2px 2px 20px #f45900;

}

.dish:nth-child(6) {
  background-image: url('../images/promo-5.png');
  background-position: center;
  background-size: cover;
  transform: rotate(300deg) translate(0, -330px) rotate(-300deg);
  box-shadow: 2px 2px 20px #1a1a2e;

}

    /* Animation */
    @keyframes rotateTable {
      from { transform: translateY(-50%) rotate(0deg); }
      to { transform: translateY(-50%) rotate(360deg); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        justify-content: flex-end;
      }
      .hero-text {
        max-width: 100%;
        border-width: 2px;
      }
      .rotating-table {
        width: 500px;
        height: 500px;
        right: -35%;
      }
      .dish {
        width: 80px;
        height: 80px;
      }
      .dish:nth-child(1),
      .dish:nth-child(2),
      .dish:nth-child(3),
      .dish:nth-child(4),
      .dish:nth-child(5),
      .dish:nth-child(6)
       {
        transform: rotate(var(--angle)) translate(0, -180px) rotate(calc(-1 * var(--angle)));
      }
    }
















       h1, h5 {
        color: #222;
      }

      .container-food {
        max-width: 1200px;
        margin: auto;
        padding: 60px 20px;
        background-image: url('../images/wood.jpg');
        background-position: center;
        background-size: cover;
      }

      /* ====== About Section ====== */
      .about-section-food {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
      }

      /* Left side - images */
      .about-images {
        flex: 1 1 45%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .about-images img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.4s ease, box-shadow 0.3s ease;
      }

      .about-images img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      /* Right side - text */
      .about-text {
        flex: 1 1 50%;
      }

      .about-text h4 {
        color: #ffffff;
        font-weight: 400;
        margin-bottom: 10px;
      }

      .about-text h1 {
        font-size: 30px;
        margin-bottom: 25px;
        color: #ffffff;
      }

      .about-text p {
        margin-bottom: 15px;
        color: #ffffff;
        font-weight: 600;
        font-size: 18px ;
      }

      .about-stats {
        display: flex;
        gap: 20px;
        margin: 25px 0;
      }

      .stat-box {
        border-left: 4px solid #ff4d00;
        padding-left: 15px;
      }

      .stat-box h2 {
        color: #ff4d00;
        font-size: 40px;
        margin-bottom: 5px;
      }

      .stat-box p {
        font-size: 14px;
        color: #ffffff;
        font-weight: 600;

      }

      .about-btn {
        display: inline-block;
        background-color: #ff4d00;
        color: #fff;
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s ease;
      }

      .about-btn:hover {
        background-color: #e13d00;
      }

      /* ====== Responsive ====== */
      @media (max-width: 768px) {
        .about-section {
          flex-direction: column;
        }

        .about-images {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
        }

        .about-text {
          text-align: center;
        }

        .about-stats {
          justify-content: center;
        }
      }











          .container-food2 {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
      opacity: 0;
      animation: fadeIn 1.2s ease forwards;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    h5 {
      color: #ff4d00;
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    h1 {
      font-size: 32px;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    h1::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background: #ff4d00;
      margin: 10px auto 0;
      border-radius: 2px;
      animation: slideIn 1s ease forwards;
    }

    @keyframes slideIn {
      0% { width: 0; opacity: 0; }
      100% { width: 80px; opacity: 1; }
    }

    /* ===== Tabs ===== */
    .tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      border-bottom: 2px solid #eee;
      margin-bottom: 40px;
      animation: fadeUp 1s ease forwards;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .tab-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      margin: 0 20px;
      padding: 10px;
      color: #555;
      display: flex;
      align-items: center;
      transition: color 0.3s ease, border-color 0.3s ease;
      border-bottom: 3px solid transparent;
      position: relative;
    }

    .tab-btn i {
      font-size: 20px;
      color: #ff4d00;
      margin-right: 8px;
      transition: transform 0.3s ease;
    }

    .tab-btn:hover i {
      transform: scale(1.2);
    }

    .tab-btn.active {
      color: #ff4d00;
      border-color: #ff4d00;
    }

    /* ===== Menu Items ===== */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
      animation: fadeMenu 0.6s ease forwards;
    }

    @keyframes fadeMenu {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .menu-item {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.1); 
      backdrop-filter: blur(10px); 
      -webkit-backdrop-filter: blur(10px); 
      border: 1px solid rgba(255,255,255,0.2); 
      padding: 15px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      animation: itemFade 0.8s ease forwards;
    }

    @keyframes itemFade {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .menu-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .menu-item img {
      width: 80px;
      height: 80px;
      border-radius: 10px;
      object-fit: cover;
    }

    .menu-info {
      flex: 1;
      text-align: left;
      padding-left: 15px;
    }

    .menu-info h5 {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #ddd;
      padding-bottom: 5px;
      margin-bottom: 5px;
      color: #222;
      font-size: 15px;
    }

    .menu-info span {
      color: #ff4d00;
    }

    .menu-info small {
      font-style: italic;
      color: #777;
    }







        :root{
      --accent:#ff5a1f;
      --accent-2:#ff7a3a;
      --bg:#ffffff;
      --text:#222;
      --muted:#666;
    }
    /* section card-food  */
    .hero-video-section{
      max-width:1200px;
      margin:20px auto;
      display:flex;
      gap:32px;
      align-items:center;
      padding:68px 20px;
      border-radius:14px;
      background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
      box-shadow: 0 8px 30px rgba(13,20,30,0.06);
      overflow:hidden;
      animation: sectionIn .8s ease both;
    }

    /* text column */
    .vv-text{
      flex:1 1 48%;
      padding:10px 6px;
    }
    .kicker{
      display:inline-block;
      font-size:13px;
      color:var(--accent);
      background:rgba(255,90,31,0.08);
      padding:6px 10px;
      border-radius:999px;
      margin-bottom:12px;
      letter-spacing:.6px;
    }
    .vv-title{
      font-size:28px;
      margin:6px 0 14px 0;
      color:var(--text);
      font-weight:600;
      line-height:1.15;
      opacity:0;
      transform:translateY(8px);
      animation: fadeUp .6s .15s ease forwards;
    }
    .vv-desc{
      color:var(--muted);
      margin-bottom:18px;
      opacity:0;
      transform:translateY(8px);
      animation: fadeUp .6s .25s ease forwards;
      font-size: 16px;
      line-height: 26px;
    }

    .vv-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      opacity:0;
      transform:translateY(8px);
      animation: fadeUp .6s .35s ease forwards;
    }

    .btn{
      appearance:none;
      border:0;
      cursor:pointer;
      padding:12px 20px;
      border-radius:10px;
      font-weight:600;
      transition:transform .15s ease, box-shadow .15s ease;
      box-shadow: 0 6px 18px rgba(15,20,30,0.06);
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background: linear-gradient(90deg,var(--accent),var(--accent-2));
      color:#fff;
    }
    .btn-outline{
      background:transparent;
      color:var(--accent);
      border:1px solid rgba(255,90,31,0.14);
    }
    .btn-primary:hover{transform:translateY(-4px); box-shadow: 0 12px 28px rgba(255,90,31,0.12)}
    .btn-outline:hover{transform:translateY(-3px); box-shadow: 0 10px 24px rgba(17,24,30,0.04)}

    /* video column */
    .vv-video{
      flex:1 1 52%;
      display:flex;
      justify-content:center;
      align-items:center;
      min-height:310px;
    }
    .vv-video .video-wrap{
      width:100%;
      height: 350px;
      max-width:560px;
      border-radius:12px;
      overflow:hidden;
      box-shadow: 0 10px 30px rgba(10,15,20,0.08);
      position:relative;
      background:#000;
      opacity:0;
      transform:translateY(12px) scale(.98);
      animation: fadeUp .7s .45s ease forwards;
    }
    video{
      display:block;
      width:100%;
      height:100%;
      object-fit:cover;
    }

    /* small play overlay for desktop */
    .play-overlay{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      pointer-events:none;
    }
    .play-overlay .circle{
      width:72px;height:72px;border-radius:50%;
      background:linear-gradient(180deg, rgba(255,90,31,0.14), rgba(255,90,31,0.06));
      display:flex;align-items:center;justify-content:center;
      backdrop-filter: blur(2px);
      transition:transform .18s ease, opacity .18s ease;
      opacity:1;
    }
    .play-overlay svg{width:30px;height:30px;fill:var(--accent);}

    .video-wrap:hover .circle{transform:scale(1.05)}


    /* animations */
    @keyframes sectionIn{
      from{opacity:0;transform:translateY(20px)}
      to{opacity:1;transform:none}
    }
    @keyframes fadeUp{
      from{opacity:0;transform:translateY(12px)}
      to{opacity:1;transform:translateY(0)}
    }



    


.testimonial-fade-slider {
  text-align: center;
  padding: 100px 20px;
  background: #fffaf4;
}

.testimonial-fade-slider h2 {
  color: #ff4d00;
  font-size: 36px;
  margin-bottom: 60px;
}

.slides {
  position: relative;
  max-width: 1200px;
  height: 350px; /* ارتفاع بیشتر */
  margin: 0 auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: all 3s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.slide img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-top: -50px;
  object-fit: cover;
  border: 4px solid #ff4d00;
  margin-bottom: 25px;
}

.slide p {
  font-size: 20px; /* متن بزرگتر */
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.8;
  padding: 0 20px;
}

.slide h4 {
  color: #d7d5d5;
  font-weight: 600;
  font-size: 18px;
}

/* Dots */
.dots {
  margin-top: 25px;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #ff4d00;
}





/* about page ---------------------------------------------------------- */

  :root {
            --primary-color: #ff7b00;
            --primary-dark: #e56d00;
            --primary-light: #ff9d40;
            --secondary-color: #2d2d2d;
            --accent-color: #ffd8b1;
            --text-color: #333;
            --light-bg: #f9f9f9;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Hero Section */
        .hero-about {
            height: 80vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;

        }

        .hero-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color) 10%, transparent 30%);
            opacity: 0.2;
            animation: hero-shimmer 8s infinite;
        }

        @keyframes hero-shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .hero-content-about {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
            animation: fadeInUp 1.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content-about h1 {
            font-size: 3.5rem;
            color: #e56d00;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-content-about p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-about {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
        }

        .btn-about:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
        }

        /* Slider Section */
        .slider-about {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title-about {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title-about h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title-about h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .slider-container-about {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .slides-about {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide-about {
            min-width: 100%;
            position: relative;
        }

        .slide-about img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .slide-content-about {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: var(--white);
            padding: 30px;
        }

        .slide-content-about h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .slider-nav-about {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-dot-about {
            width: 12px;
            height: 12px;
            background-color: var(--accent-color);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot-about.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Cards Section */
        .cards-about {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .cards-container-about {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card-about {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            animation: fadeIn 1s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .card-about:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .card-icon-about {
            background-color: var(--primary-color);
            color: var(--white);
            font-size: 2.5rem;
            padding: 20px;
            text-align: center;
        }

        .card-content-about {
            padding: 25px;
        }

        .card-content-about h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .card-content-about p {
            color: #666;
        }

        /* Gallery Section */
        .gallery-about {
            padding: 80px 0;
            background-color: var(--white);
        }

        .gallery-container-about {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item-about {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
            animation: zoomIn 0.5s ease;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .gallery-item-about img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item-about:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay-about {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 123, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item-about:hover .gallery-overlay-about {
            opacity: 1;
        }

        .gallery-overlay-about i {
            color: var(--white);
            font-size: 2rem;
        }

        /* Text Section */
        .text-about {
            padding: 80px 0;
            background-image: url('../images/m2.jpg');
            background-position: center;
            background-size: cover;
        }

        .text-content-about {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            padding: 50px;
            animation: fadeIn 1.5s ease;
              background: rgba(255, 255, 255, 0.1); 
            backdrop-filter: blur(10px); 
            -webkit-backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,0.2); 
        }

        .text-content-about h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .text-content-about h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .text-content-about p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #ffffff;
            line-height: 1.8;
            
        }

        .highlight-about {
            color: var(--primary-color);
            font-weight: 600;
        }





        /* services page ----------------------------------------- */
        :root {
            --primary-color: #ff7b00;
            --primary-dark: #e56d00;
            --primary-light: #ff9d40;
            --secondary-color: #333333;
            --accent-color: #ffd8b1;
            --text-color: #333;
            --light-bg: #f9f9f9;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-services {
            height: 85vh;
            background: linear-gradient(135deg, rgba(255, 123, 0, 0.85) 0%, rgba(229, 109, 0, 0.85) 100%), url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .hero-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-50px, -50px) rotate(360deg); }
        }

        .hero-content-services {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content-services h1 {
            font-size: 3.8rem;
            margin-bottom: 20px;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-content-services p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .btn-services {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: 2px solid var(--white);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-services:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }

        .btn-services:hover:before {
            left: 100%;
        }

        .btn-services:hover {
            background-color: transparent;
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        }

        /* Main Services Section */
        .main-services {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-title-services {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title-services h2 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            display: inline-block;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .section-title-services h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            font-size: 2.8rem;
            padding: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .service-content p {
            color: #666;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .service-features li i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: var(--transition);
            margin-top: auto;
        }

        .service-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Special Services Section */
        .special-services {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, #f0f0f0 100%);
            position: relative;
            overflow: hidden;
        }

        .special-services::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            top: -150px;
            left: -150px;
            opacity: 0.3;
        }

        .special-services::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            bottom: -200px;
            right: -200px;
            opacity: 0.3;
        }

        .special-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .special-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .special-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #555;
        }

        .special-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: rotate(-3deg);
            transition: var(--transition);
        }

        .special-image:hover {
            transform: rotate(0deg) scale(1.03);
        }

        .special-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .special-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
        }

        /* Process Section */
        .process-services {
            padding: 100px 0;
            background-color: var(--white);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 15px;
        }

        .step-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
            transition: var(--transition);
        }

        .process-step:hover .step-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .step-number {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--white);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border: 3px solid var(--primary-color);
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .step-content p {
            color: #666;
        }

        /* CTA Section */
        .cta-services {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .btn-cta {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-color);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: 2px solid var(--white);
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-cta:hover {
            background-color: transparent;
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

