/* Color Scheme */
:root {
  --primary: #3a7d44;
  --primary-light: #58d68d;
  --primary-dark: #2c5e33;
  --secondary: #f5a623;
  --secondary-light: #f8c471;
  --secondary-dark: #e69500;
  --light: #f8f4e9;
  --light-alt: #fff9f0;
  --dark: #333;
  --dark-alt: #444;
  --text: #555;
  --white: #fff;
  --gray: #eee;
  --dark-gray: #777;
  --overlay: rgba(0,0,0,0.5);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 0.5rem 5%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.logo img {
  height: 40x;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s;
  padding: 0.8rem 0;
  position: relative;
}

.main-nav ul li a:hover {
  color: var(--primary);
}

.main-nav ul li.active a {
  color: var(--primary);
  font-weight: 600;
}

.main-nav ul li.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 3px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-box {
  display: flex;
  align-items: center;
  position: relative;
}

.search-box input {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--gray);
  border-radius: 50px;
  outline: none;
  width: 200px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.search-box input:focus {
  border-color: var(--primary);
  width: 220px;
}

.search-box button {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.3s;
}

.search-box button:hover {
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.3s;
  padding: 5px;
  z-index: 1100;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 5rem 5% 4rem;
  background: linear-gradient(135deg, rgba(58, 125, 68, 0.9) 0%, rgba(44, 94, 51, 0.95) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 3rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

.highlight {
  color: var(--secondary-light);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(245, 166, 35, 0.3);
  z-index: -1;
  border-radius: 5px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-button.pulse {
  animation: pulse 2s infinite;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.5);
}

.hero-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/0.8;
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
  animation: fadeInRight 1s ease-out;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(58, 125, 68, 0.1), rgba(44, 94, 51, 0.3));
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.floating-icons {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.icon-circle:nth-child(1) {
  animation-delay: 0s;
}
.icon-circle:nth-child(2) {
  animation-delay: 1s;
}
.icon-circle:nth-child(3) {
  animation-delay: 2s;
}

/* Key Features */
.key-features {
  display: flex;
  justify-content: space-around;
  padding: 5rem 5%;
  background-color: var(--white);
  position: relative;
}

.key-features::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
}

.feature-card {
  text-align: center;
  max-width: 320px;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  background-color: var(--light-alt);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.feature-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-wave {
  transform: scaleX(1);
}

/* Section Header */
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header p {
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Remedy Categories with Tabs */
.remedy-categories {
  padding: 6rem 5%;
  background-color: var(--light);
  position: relative;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.8rem 1.5rem;
  background-color: var(--light-alt);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-tab:hover {
  background-color: var(--primary);
  color: var(--white);
}

.category-tab.active {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(58, 125, 68, 0.3);
}

.disease-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.disease-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.disease-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.disease-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(58, 125, 68, 0.1), rgba(58, 125, 68, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.disease-card:hover::after {
  opacity: 1;
}

.disease-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.disease-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.disease-card p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Popular Remedies */
.popular-remedies {
  padding: 6rem 5%;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.popular-remedies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.remedy-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2.5rem;
  padding: 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.remedy-carousel::-webkit-scrollbar {
  display: none;
}

.remedy-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.remedy-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.remedy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.remedy-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.remedy-card:hover img {
  transform: scale(1.05);
}

.remedy-info {
  padding: 1.8rem;
  text-align: left;
}

.remedy-info h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.ingredients {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ingredients::before {
  content: '\f06a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--secondary);
  font-size: 0.8rem;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-button {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(58, 125, 68, 0.3);
  border: none;
  cursor: pointer;
}

.view-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(58, 125, 68, 0.4);
}

.save-button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58, 125, 68, 0.1);
}

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

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-prev, .carousel-next {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(58, 125, 68, 0.3);
}

.carousel-prev:hover, .carousel-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(58, 125, 68, 0.4);
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Testimonials */
.testimonials {
  padding: 6rem 5%;
  background-color: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.testimonial-content {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: rgba(58, 125, 68, 0.1);
  z-index: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-light);
}

.testimonial-author h4 {
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.testimonial-author p {
  font-size: 0.8rem;
  color: var(--dark-gray);
}

/* Footer */
.main-footer {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 5rem 5% 2rem;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  padding: 0 1rem;
}

.footer-section.about .logo {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-section.about .logo img {
  width: 40px; /* Set explicit dimensions */
  height: 40px;
  filter: none; /* Temporarily remove filter */
}

.footer-section.about p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-section h3 {
  color: var(--secondary-light);
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.8rem;
}

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

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

.footer-section.links ul li a {
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-section.links ul li a:hover {
  opacity: 1;
  color: var(--secondary-light);
  padding-left: 0.5rem;
}

.footer-section.contact ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.footer-section.contact ul li i {
  color: var(--secondary-light);
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  padding: 0 1.5rem;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

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

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-light);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  overflow-y: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--primary);
}

.modal-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.modal-content h3 {
  color: var(--primary);
  margin: 1.5rem 0 0.5rem;
}

.modal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-content li {
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Animations */
@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-10px);
  }
  100% {
      transform: translateY(0px);
  }
}

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

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
  }
  70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
  }
}




/* Forced Desktop Mode Overrides - Fix for "Ajib" (Weird) Navbar and Header Blowup */
.main-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
    padding: 0 5% !important;
    background-color: var(--white) !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
}

.main-nav {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    justify-content: space-between !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 1.1rem !important; /* Reduced for force desktop */
    font-weight: 700 !important;
    color: var(--primary) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Hide logo text to prevent overflow on mobile forced-desktop view */
.logo span {
    display: none !important;
}

.logo img, .logo i {
    height: 24px !important; /* Smaller icon like screenshot */
    font-size: 1.2rem !important;
    color: var(--primary) !important;
}

.main-nav ul {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 1.2rem !important; /* Tightened gap */
    transform: none !important;
    visibility: visible !important;
}

.main-nav ul li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav ul li a {
    font-size: 0.85rem !important; /* Smaller, professional font */
    font-weight: 500 !important;
    color: var(--primary-dark) !important;
    padding: 0.5rem 0 !important;
    white-space: nowrap !important;
}

.main-nav ul li.active a {
    color: var(--primary) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--primary) !important;
}

.mobile-menu-btn, .menu-overlay {
    display: none !important;
}

.header-right {
    display: none !important; /* Hide extra elements if they wrap */
}