/* --- Global Styles & Variables --- */
:root {
  --primary-color: #4CAF50;
  --primary-dark: #3a8c3e;
  --primary-light: #81c784;
  --secondary-color: #FF6B35;
  --secondary-dark: #e55a2b;
  --accent-color: #3b82f6;
  --dark-color: #1a2a36;
  --text-color: #333;
  --text-light: #666;
  --light-color: #f8f9fa;
  --white-color: #fff;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(10px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 1.5rem 0 2rem;
  border-radius: 2px;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-header .section-divider {
  margin: 1.5rem auto 2rem;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-circle {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: loader-circle 2s ease-in-out infinite;
}

.loader-leaf {
  opacity: 0;
  animation: loader-leaf 2s ease-in-out infinite;
}

@keyframes loader-circle {
  0% {
    stroke-dashoffset: 150;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 150;
  }
}

@keyframes loader-leaf {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* --- Header --- */
/* --- Responsive Navbar Fixes --- */
/* Header and Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.sticky-nav {
  background: var(--white-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.glass-nav {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  animation: navFadeIn 1s ease;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  mix-blend-mode: multiply;
}

.header .logo .logo-img {
  width: 130px;
  height: 80px;
  object-fit: contain;
  background-size: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  filter: brightness(1.1) contrast(1.2) saturate(0.8);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.header .logo:hover .logo-img {
  opacity: 1;
  filter: brightness(1.2) contrast(1.3) saturate(1);
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
  font-size: 16px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.7em;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-hover);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
  max-height: 80vh;
  overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.dropdown-menu li {
  display: block;
  margin: 0;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary-color);
  padding-left: 1.8rem;
}

.dropdown-menu a::after {
  display: none;
}

/* Products dropdown specific styling */
.products-dropdown {
  min-width: 300px;
  max-width: 90vw;
  max-height: 70vh;
  overflow-y: auto;
  padding: 15px !important;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.products-dropdown li {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}

.products-dropdown a {
  display: block;
  padding: 0.7rem 1.5rem !important;
  white-space: normal;
  word-wrap: break-word;
  border-bottom: 1px solid #f0f0f0;
}

.products-dropdown a:hover {
  padding-left: 1.8rem !important;
}

.products-dropdown li:last-child a {
  border-bottom: none;
}

/* Customize Button */
.upcoming-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transition: var(--transition);
}

.upcoming-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Language Selector */
.language-selector {
  position: relative;
}

#languageSelect {
  padding: 0.5rem 2.2rem 0.5rem 0.8rem;
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 24px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: white;
  appearance: none;
}

#languageSelect.flag-only {
  width: 40px;
  height: 40px;
  background-position: center;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nav Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
  display: block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1400px) {
  .products-dropdown {
    min-width: 280px;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.2rem;
  }
  
  .nav-menu a {
    font-size: 0.9rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .upcoming-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .products-dropdown {
    min-width: 260px;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 0 1.5rem;
    position: relative;
  }
  
  .hamburger {
    display: flex;
    order: 3;
  }
  
  .nav-right {
    order: 2;
    gap: 1rem;
  }
  
  .logo {
    order: 1;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    flex-direction: column;
    background: var(--white-color);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 100px 2rem 2rem 2rem;
    gap: 0;
    overflow-y: auto;
    transition: left 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
  }
  
  .dropdown {
    position: static;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    margin: 0;
    padding: 0.3rem 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border: none;
    min-width: auto;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
    padding: 0.3rem 0;
  }
  
  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  
  .dropdown > a::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
  }
  
  .dropdown.active > a::after {
    transform: rotate(180deg);
  }
  
  .dropdown-arrow {
    display: none;
  }
  
  .dropdown-menu a {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-color);
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding-left: 1rem;
  }
  
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  
  /* Mobile products dropdown fixes */
  .products-dropdown {
    min-width: auto;
    max-width: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 0.3rem 0 !important;
    transform: none;
    left: auto;
    display: block;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
  
  .products-dropdown a {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-color);
  }
  
  .products-dropdown a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    padding-left: 1rem !important;
  }
  
  .products-dropdown li:last-child a {
    border-bottom: none;
  }
  
  /* Remove fixed positioning for mobile buttons */
  .language-selector,
  .upcoming-btn {
    position: static;
    background: white;
    border-radius: 5px;
    box-shadow: none;
    padding: 0.5rem;
  }
  
  .upcoming-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 1rem;
  }
  
  .header .logo .logo-img {
    width: 100px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .nav-menu {
    width: 90%;
    max-width: 350px;
    padding: 90px 1.5rem 1.5rem 1.5rem;
  }
  
  .nav-menu a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
  }
  
  .dropdown-menu {
    padding: 0.3rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0.3rem;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .dropdown-menu a {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-color);
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding-left: 1rem;
  }
  
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  
  .products-dropdown {
    padding: 0.3rem 0 !important;
    max-height: 180px;
    overflow-y: auto;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
  
  .products-dropdown a {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.8rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  .products-dropdown a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    padding-left: 1rem !important;
  }
  
  .products-dropdown li:last-child a {
    border-bottom: none;
  }
  
  .upcoming-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .nav-right {
    gap: 0.8rem;
  }
  
  .hamburger {
    width: 35px;
    height: 35px;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .logo-text {
    display: none;
  }
  
  .nav-menu {
    width: 95%;
    max-width: 320px;
    padding: 80px 1rem 1rem 1rem;
  }
  
  .nav-menu a {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }
  
  .dropdown-menu {
    padding: 0.3rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0.3rem;
    max-height: 180px;
    overflow-y: auto;
  }
  
  .dropdown-menu a {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    padding-left: 0.9rem;
  }
  
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  
  .products-dropdown {
    padding: 0.3rem 0 !important;
    max-height: 160px;
    overflow-y: auto;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
  
  .products-dropdown a {
    padding: 0.4rem 0.7rem !important;
    font-size: 0.75rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  .products-dropdown a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    padding-left: 0.9rem !important;
  }
  
  .products-dropdown li:last-child a {
    border-bottom: none;
  }
  
  .upcoming-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .hamburger {
    width: 32px;
    height: 32px;
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
  }
}

/* Language Feature */
.language-selector {
  position: relative;
  display: inline-block;
  margin: 0 15px;
}

.language-selector select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 35px 8px 35px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  outline: none;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.language-selector select option {
  padding-left: 30px;
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.language-selector select option[value="en"] {
  background-image: url('https://flagcdn.com/16x12/us.png');
}

.language-selector select option[value="es"] {
  background-image: url('https://flagcdn.com/16x12/es.png');
}

.language-selector select option[value="fr"] {
  background-image: url('https://flagcdn.com/16x12/fr.png');
}

.language-selector select option[value="de"] {
  background-image: url('https://flagcdn.com/16x12/de.png');
}

.language-selector select option[value="hi"] {
  background-image: url('https://flagcdn.com/16x12/in.png');
}

.language-selector::after {
  content: '\25BC';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #333;
  font-size: 12px;
  pointer-events: none;
}

.language-selector select:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

/* Custom scrollbar for mobile dropdowns */
.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #4CAF50;
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #45a049;
}

/* Mobile dropdown scrollbar */
@media (max-width: 992px) {
  .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }
  
  .dropdown-menu::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 6px;
  }
  
  .dropdown-menu::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 6px;
  }
  
  .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #45a049;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}





/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-color);
}

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

.hero-carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  /*filter: brightness(0.7);*/
}

.hero-carousel .slide.active {
  opacity: 1;
}

.hero-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-light);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.explore-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transition: var(--transition);
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.contact-btn {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  border-radius: 50px;
  padding: 0.95rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.contact-btn:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: var(--transition);
}

.carousel-arrow.left {
  left: 30px;
}

.carousel-arrow.right {
  right: 30px;
}

.carousel-arrow:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white-color);
  font-size: 0.9rem;
  opacity: 0.8;
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  transform: rotate(45deg);
  margin-bottom: 10px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* --- Certifications --- */
.certifications {
  background-color: var(--white-color);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cert-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cert-logo {
  height: 60px;
  opacity: 0.7;
  transition: var(--transition);
  filter: grayscale(100%);
}

.cert-name {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.cert-item:hover .cert-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* --- Stats Section --- */
.stats {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.stat-item {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-light);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
}

/* --- Categories Section --- */
.categories {
  background-color: var(--white-color);
  padding: 6rem 0;
}

.categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  transition: var(--transition);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: var(--white-color);
  z-index: 2;
  transform: translateY(20px);
  transition: var(--transition);
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.category-link {
  display: inline-block;
  color: var(--white-color);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--primary-color);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.category-card:hover {
  transform: scale(1.03);
  box-shadow: var(--box-shadow-hover);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.category-card:hover .category-content {
  transform: translateY(0);
}

.category-card:hover .category-description,
.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

.category-link:hover {
  color: var(--primary-light);
  border-color: var(--primary-light);
}

/* --- About Section --- */
.about-section {
  background-color: var(--light-color);
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  }

  .about-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
  }

  .about-image {
    position: relative;
  }

  .about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
  }

  .about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
  }

  .about-quote {
    margin-top: 4rem;
    text-align: center;
  }

  .about-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-dark);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
  }

  .about-quote blockquote::before,
  .about-quote blockquote::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.2);
    position: absolute;
    line-height: 1;
  }

  .about-quote blockquote::before {
    top: -20px;
    left: 0;
  }

  .about-quote blockquote::after {
    bottom: -40px;
    right: 0;
    transform: rotate(180deg);
  }

  /* --- Vision & Mission Section --- */
  .vision-mission-section {
    background-color: var(--white-color);
    padding: 6rem 0;
  }

  .vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .vision-card,
  .mission-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
  }

  .vision-card:hover,
  .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }

  .vision-card h2,
  .mission-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .vision-card p {
    font-size: 1.1rem;
    color: var(--text-light);
  }

  .mission-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mission-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .mission-card li:last-child {
    margin-bottom: 0;
  }

  .mission-card li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 0.25rem;
  }

  .mission-card li p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
  }

  /* --- Bestsellers Section --- */
  .bestsellers {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
  }

  .bestsellers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .product-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
  }

  .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
  }

  .product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
  }

  .product-info {
    padding: 1.5rem;
    text-align: center;
  }

  .product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .product-code {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .product-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }

  .product-card:hover .product-image {
    transform: scale(1.05);
  }

  .product-link:hover {
    border-color: var(--primary-color);
  }

  .products-cta {
    text-align: center;
    margin-top: 3rem;
  }

  .view-all-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
  }

  .view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
  }

  /* --- Why Choose Us Section --- */
  .why-choose {
    background-color: var(--white-color);
    padding: 6rem 0;
  }

  .features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .feature-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    background-color: var(--white-color);
  }

  .feature-card .feature-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
  }

  .feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
  }

  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .feature-desc {
    font-size: 0.95rem;
    color: var(--text-light);
  }

  /* --- Gallery Section --- */
  .social-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
  }

  .gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
  }

  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }

  .gallery-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: scale(0.8);
    transition: var(--transition);
  }

  .gallery-item:hover {
    transform: scale(1.03);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-item:hover .gallery-icon {
    transform: scale(1);
  }

  .gallery-buttons {
    text-align: center;
    margin-top: 3rem;
  }

  .follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #E1306C;
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
  }

  .follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
    color: var(--white-color);
  }

  /* --- Newsletter Section --- */
  .newsletter {
    background-color: var(--primary-color);
    padding: 4rem 0;
    color: var(--white-color);
  }

  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
  }

  .newsletter-form button {
    background-color: var(--dark-color);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
  }

  .newsletter-form button:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
  }

  /* --- Footer --- */
  .footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 5rem 0 2rem;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo-icon {
    width: 40px;
    height: 40px;
  }

  .footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
  }

  .footer-section p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
  }

  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 0.75rem;
  }

  .footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
  }

  .footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }

  .contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .contact-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: var(--transition);
  }

  .social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
  }

  /* --- Back to Top Button --- */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
  }

  /* --- Responsive Styles --- */
  @media (max-width: 1200px) {
    .container {
      padding: 0 2rem;
    }

    .hero-text h1 {
      font-size: 3.5rem;
    }
  }

  @media (max-width: 992px) {
    html {
      font-size: 15px;
    }

    .hero-text h1 {
      font-size: 3rem;
    }

    .about-grid,
    .vision-mission-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .about-image {
      order: -1;
    }

    .about-image img {
      width: 100%;
    }

    .features-grid-modern {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .nav-container {
      position: relative;
    }

    .hamburger {
      display: block;
    }

    .nav-menu {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--white-color);
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
      max-height: 400px;
      opacity: 1;
      visibility: visible;
      padding: 1rem 0;
    }

    .nav-menu li {
      width: 100%;
      text-align: center;
      position: relative;
    }
    
    .dropdown-menu {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      display: none;
      background-color: rgba(0, 0, 0, 0.02);
      box-shadow: none;
      padding: 0;
      margin: 0;
      width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
      display: block;
    }
    
    .dropdown-menu a {
      padding: 0.8rem 0;
      font-size: 0.9rem;
    }
    
    .dropdown-arrow {
      transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-arrow {
      transform: rotate(180deg);
    }

    .nav-menu a {
      display: block;
      padding: 1rem 0;
      width: 100%;
    }

    .upcoming-btn {
      display: none;
    }

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

    .hero-text p {
      font-size: 1.1rem;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }

    .carousel-arrow {
      width: 40px;
      height: 40px;
    }

    .carousel-arrow.left {
      left: 15px;
    }

    .carousel-arrow.right {
      right: 15px;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .newsletter-form {
      flex-direction: column;
    }
  }

  @media (max-width: 576px) {
    html {
      font-size: 14px;
    }

    .hero-text h1 {
      font-size: 2rem;
    }

    .hero-tagline {
      font-size: 0.9rem;
    }

    .stat-number {
      font-size: 2.5rem;
    }

    .vision-card,
    .mission-card {
      padding: 2rem;
    }

    .feature-card {
      padding: 2rem;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .gallery-item {
      height: 250px;
    }

    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
    }
  }
  
   /* --- Sheet Component Styles --- */
.sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sheet-content {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 500px;
  background-color: var(--white-color);
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sheet-overlay.active .sheet-content {
  transform: translateX(0);
}

.sheet-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  flex-shrink: 0;
}


.sheet-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.sheet-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.sheet-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.sheet-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}

.sheet-body {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.sheet-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  background-color: var(--white-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Sheet Component */
@media (max-width: 1200px) {
  .sheet-content {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .sheet-content {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .sheet-content {
    max-width: 100%;
    width: 100%;
  }

  .sheet-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .sheet-body {
    padding: 1.5rem;
  }

  .sheet-footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .sheet-header {
    padding: 1rem 1rem 0.5rem;
  }

  .sheet-body {
    padding: 1rem;
  }

  .sheet-footer {
    padding: 1rem;
  }

  .sheet-title {
    font-size: 1.3rem;
  }

  .sheet-description {
    font-size: 0.9rem;
  }
}


iframe{
    border-radius: 2px;
}


.online_training{
    position: fixed;
    top: 20%;
    right: 0;
    transform: translateX(76%);
    background-color: #e9e9e9;
    z-index: 100;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius:10px 0px 0px 10px;
    display: flex;
    gap: 12px;
    color: #48a84c;
    align-items: center;
    cursor: pointer;
    transition: .4s;
    animation: training 5s linear 2s 1;
}
@keyframes training {
    0%{
        transform: translateX(76%);
    }
    10%{
        transform: translateX(0%);
    }
    90%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(76%);
    }
}

.online_training:hover{
    transform: translateX(0);
}
.online_training a{
    color: var(--primary-color);
}


.floating-button {
            position: fixed;
            width: 50px;
            height: 50px;
            background-color: #25d366;
            color: white;
            font-size: 24px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            right: 32px; /* Same right position for vertical alignment */
        }

        .message-icon {
            bottom: 160px; /* Higher position for message icon */
            background-color: #007bff;
        }

        .whatsapp-icon {
            bottom: 90px; /* Lower position for WhatsApp icon */
        }
        
        
