:root {
    --base-font-size: 35.15625%;
    --primary-color: #800020;
    --secondary-color: #111;
    --accent-color: #8B5C2A;
    --text-light: #f3e9ef;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-heavy: rgba(0,0,0,0.2);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #800020 0%, #a00030 50%, #800020 100%);
    --gradient-secondary: linear-gradient(135deg, #111 0%, #333 50%, #111 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    font-size: var(--base-font-size); /* 1rem = 10px */
    scroll-behavior: smooth;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: 
        radial-gradient(circle at 20% 80%, rgba(128, 0, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(17, 17, 17, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    background-attachment: fixed;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 0% 0%; }
    50% { background-position: 100% 100%, 0% 0%, 100% 100%; }
}

/* Enhanced Header and Navigation */
header {
    background: var(--gradient-primary);
    box-shadow: 0 0.2rem 0.5rem var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 15000;
    backdrop-filter: blur(20px);
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--glass-border);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: -1;
}

header:hover {
    box-shadow: 0 0.4rem 1.5rem var(--shadow-medium);
    transform: translateY(-1px);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: static;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    margin-left: 2cm;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    z-index: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    transition: var(--transition-fast);
}

.logo a {
    display: block;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    filter: drop-shadow(0 4px 8px var(--shadow-light));
    transition: var(--transition-fast);
}

.logo:hover img {
    filter: drop-shadow(0 6px 12px var(--shadow-medium)) brightness(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.nav-links li {
    position: relative;
    margin-left: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 2.4rem;
    transition: var(--transition-fast);
    padding: 1rem 0;
    display: block;
    white-space: nowrap;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    border-radius: 0.5rem;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff, #f0f0f0, #fff);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Enhanced Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--gradient-primary);
    min-width: 30rem;
    box-shadow: 0 0.8rem 2rem var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem) scale(0.95);
    transition: var(--transition-medium);
    padding: 1rem 0;
    z-index: 1000;
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    border-radius: 1rem;
    z-index: -1;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown li {
    margin: 0;
    padding: 0;
}

.dropdown a {
    padding: 1.2rem 2rem;
    font-size: 2rem;
    color: #fff;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.dropdown a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.dropdown a:hover::before {
    opacity: 1;
}

.dropdown a:hover {
    color: #fff;
    transform: translateX(8px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Enhanced Mobile Navigation */
@media (max-width: 76.8rem) {
    .nav-links {
        display: none;
    }
    
    .logo img {
        height: 8rem;
    }
}

@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .nav-links {
    display: none;
  }
  
  /* Mobile Navigation Toggle Button */
  .mobile-nav-toggle {
    display: flex;
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: rgba(128, 0, 32, 0.9);
    border: none;
    font-size: 2.4rem;
    color: #fff;
    z-index: 4000;
    cursor: pointer;
    outline: none;
    box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.2);
    transition: var(--transition-fast);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
  }
  
  .mobile-nav-toggle:hover {
    background: rgba(128, 0, 32, 1);
    transform: scale(1.05);
  }
  
  .mobile-nav-toggle i {
    color: #fff;
    transition: var(--transition-fast);
  }
  
  /* Mobile Navigation Menu - Full Screen Overlay */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #b84060 0%, #c85080 100%);
    z-index: 3000;
    flex-direction: column;
    align-items: flex-start;
    padding: 10rem 2rem 2rem 2rem;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    transform: translateX(-100%);
  }
  
  .nav-links.show {
    display: flex;
    transform: translateX(0);
  }
  
  /* Mobile Navigation List Items */
  .nav-links li {
    margin: 1rem 0;
    width: 100%;
    list-style: none;
    opacity: 0;
    transform: translateX(-2rem);
    animation: slideInFromLeft 0.5s ease forwards;
  }
  
  .nav-links li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links li:nth-child(2) { animation-delay: 0.2s; }
  .nav-links li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links li:nth-child(4) { animation-delay: 0.4s; }
  .nav-links li:nth-child(5) { animation-delay: 0.5s; }
  
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-2rem);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Mobile Navigation Links - MAIN FIX */
  .nav-links a {
    font-size: 2.2rem;
    color: #ffffff !important;
    padding: 1.5rem 2rem;
    display: block !important;
    width: 100%;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    background: rgba(255,255,255,0.15);
    border-radius: 1rem;
    margin: 0.5rem 0;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-links a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff !important;
    transform: translateX(1rem);
    box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.2);
  }
  
  /* Mobile Dropdown Styles */
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.1);
    margin: 1rem 0 0 2rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
  }
  
  .nav-links .dropdown li {
    margin: 0.5rem 0;
  }
  
  .nav-links .dropdown a {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    border-radius: 0.5rem;
    color: #fff !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.05);
    margin: 0.3rem 1rem;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-links .dropdown a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    transform: translateX(0.5rem);
  }
  
  
  /* Force visibility of all text in mobile navigation */
  .nav-links * {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
}

/* Google Translate - Right Corner */
#google_translate_element {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 15001 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 10px !important;
  border-radius: 8px !important;
  border: 2px solid #800020 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
  backdrop-filter: blur(10px) !important;
}

#google_translate_element:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3) !important;
}

/* Style the Google Translate dropdown */
#google_translate_element .goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  font-family: inherit !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
  color: #800020 !important;
  font-weight: bold !important;
  font-size: 14px !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  background: transparent !important;
  border: none !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value:hover {
  background: rgba(128, 0, 32, 0.1) !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
  color: #800020 !important;
}

/* Hide on mobile */
@media (max-width: 768px) {
  #google_translate_element {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 80rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #219a52;
}

/* Products Section */
.products {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-0.5rem);
}

.product-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 5rem 1rem;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-us-heading {
    font-size: 5.5rem;
    font-weight: bold;
    color: #800020;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1rem;
}

.about-us-paragraph {
    max-width: 180rem;
    margin: 0 auto;
    font-size: 3.2rem;
    color: #222;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.05rem;
    padding: 0 2rem;
}

/* About Us Banner */
.about-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/about-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 8rem; /* Space for fixed header */
}

.about-banner-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.about-banner-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Welcome Section */
.welcome-section {
    padding: 8rem 1rem;
    background: #fff;
}

.welcome-container {
    max-width: 240rem;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.welcome-image {
    flex: 1;
    min-width: 30rem;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 0.8rem 3rem rgba(0,0,0,0.1);
}

.welcome-content {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.welcome-side-content {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.welcome-content h2 {
    font-size: 5.5rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.welcome-content p {
    font-size: 3.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.welcome-content p strong {
    display: block;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

.mission-vision-item {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.05);
    text-align: center;
}

.mission-vision-icon {
    font-size: 5rem;
    color: #800020;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-vision-item h3 {
    font-size: 3.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.mission-vision-item p {
    font-size: 2.7rem;
    line-height: 1.7;
    color: #666;
}

/* Our Values Section */
.values-section {
    background: #f8f8f8;
    padding: 8rem 1rem;
    text-align: center;
}

.values-logo {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    margin-bottom: 2rem;
}

.values-heading {
    font-size: 5.5rem;
    color: #333;
    margin-bottom: 5rem;
    font-weight: 700;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto 5rem auto;
}

.values-item {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.08);
    text-align: center;
}

.values-icon {
    font-size: 5rem;
    color: #800020;
    margin-bottom: 1.5rem;
    display: block;
}

.values-item h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.values-item p {
    font-size: 2.7rem;
    line-height: 1.7;
    color: #666;
}

.values-final-paragraph {
    max-width: 90rem;
    margin: 0 auto 3rem auto;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
}

.values-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #27ae60;
}

.values-cta a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.values-cta a:hover {
    color: #219a52;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
}

#contact-form textarea {
    height: 15rem;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #219a52;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0rem;
}

.contact-label {
    font-size: 2.7rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.contact-label-title {
    font-size: 2.7rem;
    color: #800020;
    font-weight: 700;
    line-height: 1.2;
}

.contact-label-detail {
    font-size: 2.7rem;
    color: #111;
    font-weight: 700;
    line-height: 1.2;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1.0rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 76.8rem) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    margin-top: 6rem; /* Space for fixed header */
    margin-bottom: 8rem; /* Consistent spacing */
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-button.prev {
    left: 1rem;
}

.slider-button.next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Slider Text Overlays */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: slideTextFadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s;
}

.slide.active .slide-text {
    opacity: 1;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 2rem 4rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: titleSlideIn 1.2s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Corner positioning for slides 1-4 */
.slide:nth-child(1) .slide-text,
.slide:nth-child(2) .slide-text,
.slide:nth-child(3) .slide-text,
.slide:nth-child(4) .slide-text {
    top: 20%;
    left: 10%;
    transform: none;
    text-align: left;
    animation: cornerTextFadeIn 2.5s ease-in-out forwards;
    animation-delay: 1s;
}

.slide:nth-child(1) .slide-title,
.slide:nth-child(2) .slide-title,
.slide:nth-child(3) .slide-title,
.slide:nth-child(4) .slide-title {
    font-size: 3.5rem;
    padding: 1.5rem 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0.8rem;
    animation: cornerTitleFadeIn 3s ease-in-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
    transform: translateX(-50px);
}

.slide.active:nth-child(1) .slide-title,
.slide.active:nth-child(2) .slide-title,
.slide.active:nth-child(3) .slide-title,
.slide.active:nth-child(4) .slide-title {
    opacity: 1;
    transform: translateX(0);
}

/* Special animation for the 5th slide (Bhoomi Global Exports) */
.slide-title.special-animation {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(0, 0, 0, 0.9));
    border: 3px solid #8B4513;
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.6);
    animation: specialTitleAnimation 2s ease-out forwards;
    animation-delay: 0.8s;
    position: relative;
    overflow: hidden;
}

.slide-title.special-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.slide-title.special-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.3), transparent);
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes slideTextFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes cornerTextFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cornerTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    30% {
        opacity: 0.2;
        transform: translateX(-35px);
    }
    60% {
        opacity: 0.6;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes specialTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(5px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 20px rgba(139, 69, 19, 0.4);
    }
    100% {
        box-shadow: 0 0 40px rgba(139, 69, 19, 0.8), 0 0 60px rgba(0, 0, 0, 0.6);
    }
}

/* Responsive adjustments for slider text */
@media (max-width: 76.8rem) {
    .slide-title {
        font-size: 3rem;
        padding: 1.5rem 2rem;
    }
    
    .slide:nth-child(1) .slide-title,
    .slide:nth-child(2) .slide-title,
    .slide:nth-child(3) .slide-title,
    .slide:nth-child(4) .slide-title {
        font-size: 2.8rem;
        padding: 1.2rem 2rem;
    }
    
    .slide-title.special-animation {
        font-size: 2.8rem;
    }
}

@media (max-width: 48rem) {
    .slide-title {
        font-size: 2.2rem;
        padding: 1rem 1.5rem;
    }
    
    .slide:nth-child(1) .slide-title,
    .slide:nth-child(2) .slide-title,
    .slide:nth-child(3) .slide-title,
    .slide:nth-child(4) .slide-title {
        font-size: 2rem;
        padding: 1rem 1.5rem;
    }
    
    .slide:nth-child(1) .slide-text,
    .slide:nth-child(2) .slide-text,
    .slide:nth-child(3) .slide-text,
    .slide:nth-child(4) .slide-text {
        top: 15%;
        left: 5%;
    }
    
    .slide-title.special-animation {
        font-size: 2rem;
    }
}

/* Centered Logo and Title Section */
.centered-logo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 8rem 0; /* Consistent spacing */
}

.center-logo, .premium-products-logo {
    width: 18rem;
    height: 18rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.center-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1rem;
    margin-top: 0;
    background: linear-gradient(90deg, #800020, #111 60%, #800020 100%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightning-maroon-black 3s linear infinite;
}

@keyframes lightning-maroon-black {
    0% {
        background-position: 0% 50%;
        filter: brightness(1.2) drop-shadow(0 0 2px #800020);
    }
    100% {
        background-position: 100% 50%;
        filter: brightness(2) drop-shadow(0 0 16px #111);
    }
}

.center-heading {
    font-size: 4.5rem;
    font-weight: 700;
    color: #800020;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.4rem;
    letter-spacing: 0.05rem;
}

.center-paragraph {
    max-width: 120rem;
    margin: 0 auto;
    font-size: 2.7rem;
    color: #222;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

/* Premium Products Section */
.premium-products-section {
    position: relative;
    background: #f3f3f3;
    padding-top: 0;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 8rem; /* Consistent spacing */
}

.premium-products-bg-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 10;
    pointer-events: none;
}

.premium-products-logo {
    position: relative;
    z-index: 11;
    margin-top: 31px;
    background: none;
}

.premium-products-title,
.product-card-list {
    position: relative;
    z-index: 3;
}

.premium-products-logo {
    z-index: 2;
}

.premium-products-title {
    font-size: 4rem;
    font-weight: bold;
    color: #800020;
    text-align: center;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
}

.product-card-list {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 6rem;
    flex-wrap: wrap;
}

.product-card-new {
    background: #fff;
    border-radius: 1.8rem;
    box-shadow: 0 0.4rem 2.4rem rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40.5rem;
    padding: 3.6rem 2.7rem 2.7rem 2.7rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.product-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05) 0%, rgba(17, 17, 17, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 1;
}

.product-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128,0,32,0.1), transparent);
    transition: var(--transition-medium);
}

.product-card-new:hover::before {
    left: 100%;
}

.product-card-new:hover {
    box-shadow: 0 1.2rem 4rem var(--shadow-heavy);
    transform: translateY(-1.5rem) scale(1.05);
}

.product-card-new:hover::after {
    opacity: 1;
}

.product-image-new {
    width: 30rem;
    height: 30rem;
    object-fit: contain;
    border-radius: 1.8rem;
    margin-bottom: 2.7rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 8px var(--shadow-light));
    position: relative;
    z-index: 2;
}

.product-card-new:hover .product-image-new {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px var(--shadow-medium));
}

.product-name-new {
    font-size: 2.7rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.05rem;
    transition: var(--transition-fast);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.product-card-new:hover .product-name-new {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.product-name-new::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.product-card-new:hover .product-name-new::after {
    width: 50%;
}

.product-detail-container {
    max-width: 95%;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

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

.product-detail-image {
    width: 100%;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.product-detail-title {
    font-size: 4rem;
    color: #800020;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(128,0,32,0.08);
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.8s forwards;
}

.product-detail-title::after {
    content: '';
    display: block;
    width: 6rem;
    height: 0.4rem;
    background: #800020;
    border-radius: 2px;
    margin: 1.2rem auto 0 auto;
    opacity: 0.8;
}

.product-detail-paragraph {
    font-size: 2.2rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.product-detail-paragraph ul {
    list-style-type: disc;
    padding-left: 20px;
}

.product-detail-paragraph ul > li {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    border: none;
    transition: none;
    font-size: inherit;
    font-weight: inherit;
}

.product-detail-paragraph ul > li:hover {
    background: none;
    color: inherit;
    box-shadow: none;
    border: none;
    transform: none;
}

.product-detail-paragraph ul > li b {
    color: #ffd700;
}

.flavored-makhana-section {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
    max-width: 140rem;
    margin: 0 auto;
}

.flavored-makhana-title {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.flavored-makhana-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.flavored-makhana-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.05);
    flex-basis: calc(50% - 1.5rem);
    transition: transform 0.3s ease-in-out;
}

.flavored-makhana-item:hover {
    transform: scale(1.05);
}

.flavored-makhana-item:nth-child(odd) {
    background-color: #333333;
    color: #ffffff;
}

.flavored-makhana-item:nth-child(even) {
    background-color: #a05252;
    color: #ffffff;
}

.flavored-makhana-item img {
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.flavored-makhana-item div {
    flex: 1;
}

/* Why Choose Bhoomi Global Exports Section */
.why-choose-section {
    position: relative;
    padding: 7rem 0 6rem 0;
    background: linear-gradient(to right, #800020 50%, #444444 50%);
    color: #fff;
    overflow: hidden;
    z-index: 0;
}

.why-choose-bg-question {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80rem !important;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.why-choose-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 4.375rem;
    font-weight: 800;
    margin-bottom: 4.8rem;
    letter-spacing: 0.1rem;
    color: #fff;
    text-shadow: none;
}

.why-choose-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
}

.why-choose-badge {
    font-size: 3.2rem;
    min-width: 9.5rem;
    min-height: 9.5rem;
    background: #fff;
    color: #800020;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.08);
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    border: 0.3rem solid #fff;
}

.why-choose-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}

.why-choose-desc {
    font-size: 2.2rem;
    color: #f3e9ef;
    font-weight: 400;
    line-height: 1.7;
}

@media (max-width: 90rem) {
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
}

/* Why the Indian Market is Best Section */
.why-indian-market-section {
    background: #f8f8f8;
    padding: 7rem 0 6rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8rem; /* Consistent spacing */
}

.why-indian-market-logo {
    display: block;
    margin: 0 auto 2rem;
    height: 18rem;
    width: 18rem;
    object-fit: contain;
}

.why-indian-market-heading {
    text-align: center;
    font-size: 3.8rem;
    color: #800020;
    margin-bottom: 4rem;
}

.why-indian-market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.why-indian-market-card {
    background-color: #a05252;
    color: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
}

.why-indian-market-card.dark {
    background-color: #333;
}

.why-indian-market-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.why-indian-market-badge {
    background-color: #fff;
    color: #a05252;
    border-radius: 50%;
    width: 6.5rem;
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.why-indian-market-card.dark .why-indian-market-badge {
    color: #333;
}

.why-indian-market-title {
    font-size: 2.8rem;
    font-weight: 600;
}

.why-indian-market-desc {
    font-size: 2.2rem;
    line-height: 1.7;
}

@media (max-width: 90rem) {
    .why-indian-market-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Responsive Design for About Us */
@media (max-width: 99.2rem) {
    .welcome-container {
        gap: 4rem;
    }

    .welcome-image img {
        max-width: 50rem;
        margin-bottom: 3rem;
    }

    .mission-vision-grid {
        gap: 3rem;
    }
}

/* Mobile-First Responsive Design for About Us */
@media (max-width: 768px) {
    .welcome-container {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .welcome-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 2rem !important;
        order: 1 !important;
    }
    
    .welcome-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        object-fit: cover !important;
        border-radius: 1rem !important;
    }
    
    .welcome-content {
        width: 100% !important;
        max-width: 100% !important;
        order: 2 !important;
        padding: 0 1rem !important;
    }
    
    .welcome-side-content {
        width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
    }
    
    .welcome-side-content h2 {
        font-size: 3.5rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .welcome-side-content p {
        font-size: 2.2rem !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Mission Vision Mobile Layout */
    .mission-vision-row {
        flex-direction: column !important;
        gap: 2rem !important;
        margin: 2rem 0 !important;
        padding: 0 1rem !important;
    }
    
    .mission-vision-item {
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        text-align: center !important;
    }
    
    .mission-vision-item h3 {
        font-size: 2.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .mission-vision-item p {
        font-size: 2rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
}

/* Mission Vision Row Styling */
.mission-vision-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    margin: 3.5rem 0 2.5rem 0;
    flex-wrap: wrap;
}

.mission-vision-icon {
    margin-bottom: 1.5rem;
}

.mission-vision-icon i {
    font-size: 4rem;
}

.mission-vision-item:nth-child(1) .mission-vision-icon i {
    color: #800020;
}

.mission-vision-item:nth-child(2) .mission-vision-icon i {
    color: #111;
}

.enquiry-section {
    width: 100%;
    background: var(--gradient-secondary);
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(128, 0, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: enquiryBackground 15s ease-in-out infinite;
}

@keyframes enquiryBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
.enquiry-container {
    width: 70%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}
.enquiry-text {
    min-width: 260px;
    margin-right: 2.5rem;
}
.enquiry-subtitle {
    color: #b3e6ff;
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.85;
}
.enquiry-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: block;
    margin-top: 0.2rem;
    background: linear-gradient(90deg, #6ad0ff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.enquiry-form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.enquiry-input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-size: 1.6rem;
    min-height: 4.5rem;
    line-height: 1.6rem;
    outline: none;
    box-shadow: 0 0.1rem 0.5rem rgba(0,0,0,0.08);
    background: #fff;
    color: #333;
    transition: box-shadow 0.2s;
}
.enquiry-input::placeholder {
    font-size: 1.6rem;
}
.enquiry-input::-webkit-input-placeholder {
    font-size: 1.6rem;
}
.enquiry-input::-moz-placeholder {
    font-size: 1.6rem;
}
.enquiry-input:-ms-input-placeholder {
    font-size: 1.6rem;
}
.enquiry-input::-ms-input-placeholder {
    font-size: 1.6rem;
}
.enquiry-input:focus {
    box-shadow: 0 0.2rem 1rem rgba(128,0,32,0.13);
}
.enquiry-btn {
    background: linear-gradient(135deg, #8B5C2A 0%, #A47551 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 2rem;
    padding: 1.1rem 2.2rem;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.15);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}
.enquiry-btn::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: var(--transition-fast);
}

.enquiry-btn:hover::before {
    left: 100%;
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #A47551 0%, #8B5C2A 100%);
    box-shadow: 0 0.6rem 1.5rem rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
@media (max-width: 900px) {
    .enquiry-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .enquiry-text {
        margin-right: 0;
        text-align: center;
    }
    .enquiry-form {
        flex-direction: column;
        gap: 1rem;
    }
    .enquiry-btn, .enquiry-input {
        width: 100%;
    }
}

.content-width {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

.enquiry-btn:hover {
    background-color: #6a001a;
}

.floating-whatsapp {
    position: fixed;
    right: 8rem;
    bottom: 8rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #20c05a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.8rem 2rem rgba(37, 211, 102, 0.3);
    z-index: 12000;
    text-decoration: none;
    transition: var(--transition-fast);
    pointer-events: auto;
    animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { 
        box-shadow: 0 0.8rem 2rem rgba(37, 211, 102, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 1rem 2.5rem rgba(37, 211, 102, 0.4);
        transform: scale(1.02);
    }
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 1.2rem 3rem rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20c05a 0%, #25d366 100%);
    animation: none;
}

.floating-whatsapp i {
    font-size: 6rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 7rem;
        bottom: 7rem;
        width: 10rem;
        height: 10rem;
    }
    .floating-whatsapp i {
        font-size: 5rem;
    }
}

.cow-dung-section h3 {
    text-align: left;
}

.cow-dung-section p {
    text-align: justify;
    font-weight: normal;
}

.cow-dung-section {
    transition: transform 0.3s ease-in-out;
}

.cow-dung-section:hover {
    transform: scale(1.02);
}

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

.makhana-variety-box {
    background: #e8d5d8;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease-in-out;
}

.makhana-variety-box:hover {
    transform: scale(1.02);
}

.makhana-variety-title {
    font-size: 2.7rem;
    color: #800020;
    font-weight: 1000;
    margin-bottom: 1.5rem;
}

.flavored-makhana-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.flavored-makhana-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 1rem;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.flavored-makhana-card:hover {
    transform: scale(1.02);
}

.flavored-makhana-card.black {
    background: #111;
}

.flavored-makhana-card.maroon {
    background: #800020;
}

.flavored-makhana-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-right: 2rem;
    background: #fff;
    padding: 0.5rem;
}

.flavored-makhana-card .card-text h4 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.flavored-makhana-card .card-text p {
    font-size: 1.8rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .flavored-makhana-grid {
        grid-template-columns: 1fr;
    }
}

.flavored-makhana-item {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .why-indian-market-grid {
    grid-template-columns: 1fr;
  }
  .why-indian-market-card {
    background-color: #a05252 !important; /* Maroon for odd */
  }
  .why-indian-market-card:nth-child(even) {
    background-color: #333 !important; /* Black for even */
  }
  .why-indian-market-card,
  .why-indian-market-card.dark {
    color: #fff;
  }
}

.certificates-heading {
    font-size: 5.5rem;
    color: #800020;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.certificates-heading::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.3);
}

.certificates-paragraph {
    font-size: 3.2rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.certificate-label {
    font-size: 3.2rem;
    color: #800020;
    font-weight: 700;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
    animation: fadeInUp 0.6s ease-out;
}

.certificate-label:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Enhanced Certificate Page Styles */
.certificate-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 0.8rem 2.5rem rgba(128, 0, 32, 0.1);
    transition: var(--transition-medium);
    background: #fff;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.certificate-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.02) 0%, rgba(17, 17, 17, 0.02) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 1;
}

.certificate-container:hover::before {
    opacity: 1;
}

.certificate-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 1.5rem 4rem rgba(128, 0, 32, 0.15);
}

.certificate-embed {
    position: relative;
    z-index: 2;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.certificate-container:hover .certificate-embed {
    transform: scale(1.01);
}

.certificate-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    transition: var(--transition-medium);
}

.certificate-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05) 0%, rgba(17, 17, 17, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 1;
}

.certificate-image-container:hover::before {
    opacity: 1;
}

.certificate-image {
    transition: var(--transition-medium);
    position: relative;
    z-index: 2;
}

.certificate-image-container:hover .certificate-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.certificate-view-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00030 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.4rem 1rem rgba(128, 0, 32, 0.2);
    margin-top: 1rem;
}

.certificate-view-btn::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: var(--transition-fast);
}

.certificate-view-btn:hover::before {
    left: 100%;
}

.certificate-view-btn:hover {
    background: linear-gradient(135deg, #a00030 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 0.6rem 1.5rem rgba(128, 0, 32, 0.3);
}

.certificate-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.certificate-item:nth-child(1) { animation-delay: 0.1s; }
.certificate-item:nth-child(2) { animation-delay: 0.2s; }
.certificate-item:nth-child(3) { animation-delay: 0.3s; }
.certificate-item:nth-child(4) { animation-delay: 0.4s; }

.certificates-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00030 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.certificates-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: bannerShimmer 8s ease-in-out infinite;
}

@keyframes bannerShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.certificates-logo {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: var(--transition-fast);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.certificates-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}

.form-label {
    font-size: 2rem;
    color: #800020;
    font-weight: 600;
    line-height: 1.5;
}

select[name="countryCode"], select[name="countryCode"] option {
    font-size: 2rem;
}

/* Additional Modern Enhancements */

/* Smooth scroll behavior for all elements */
* {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Improved text selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Enhanced loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced card hover effects */
.card-hover {
    transition: var(--transition-medium);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.15);
}

/* Glass morphism utility classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced button styles */
.btn-modern {
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
    transition: var(--transition-fast);
}

.btn-modern::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: var(--transition-fast);
}

.btn-modern:hover::before {
    left: 100%;
}

/* Improved form inputs */
input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
    transform: translateY(-1px);
}

/* Enhanced image effects */
img {
    transition: var(--transition-fast);
}

img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Smooth page transitions */
.page-transition {
    animation: fadeInUp 0.6s ease-out;
}

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

/* EmailJS Message Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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