* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #333;
}

/* TOP BAR */
.top-bar {
    background: #0d6c26;
    color: #fff;
    padding: 6px 30px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

/* HEADER */
header {
    position: sticky;   /* key line */
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 10px;
    font-weight: bold;
    color: #0d6c26;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #0d6c26;
    font-size: 24px;      /* better size for menu */
    font-weight: 700;    /* MAKES MENU BOLD */
    padding: 8px 5px;   /* clickable area */
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 420px;
    background: url("https://via.placeholder.com/1600x500") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    background: rgba(255,255,255,0.85);
    padding: 20px;
    color: #0d6c26;
}

/* SECTIONS */
.about, .products, .contact {
    padding: 70px 30px;
    text-align: center;
}

.btn {
    display: inline-block;
    background: #0d6c26;
    color: #fff;
    padding: 10px 22px;
    margin-top: 20px;
    border-radius: 4px;
    text-decoration: none;
}

/* FEATURES */
.features {
    background: #f7f7f7;
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.feature-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Heading spacing */
.feature-box h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #000000;
}

/* Paragraph spacing */
.feature-box p {
    line-height: 1.6;
    text-align: justify;
}

/* PRODUCTS */
.product-images {
    text-align: center;
}
/* CONTACT */
.contact {
    background: #f7f7f7;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background: #0d6c26;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* FOOTER */
footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        display: none;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        background: #fff;
        padding: 15px;
    }

    nav.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .products {
        grid-template-columns: 1fr;
    }
}
.hero-section {
  position: relative;
  height: 80vh;
  background: url("drugs pill.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7); /* transparent */
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.quote {
  color: #0b6623;
  font-size: 28px;
  margin-bottom: 40px;
}

.hero-content h3 {
  font-size: 24px;
  font-weight: bold;
}

.hero-content p {
  color: #444;
  margin: 15px 0 25px;
}

.btn {
  background: #0b6623;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
}
.language-bar {
  background: #0b6623;
  padding: 6px 0;
  text-align: center;
}

#google_translate_element select {
  padding: 4px 8px;
  border-radius: 4px;
  border: none;
}
.products-section {
  position: relative;
  padding: 60px 0;
  background: url("run.avif") center/cover no-repeat;
}

.products-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* transparent white */
}

.products-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 200px;
  font-weight: 600;
}
/* ===== PRODUCT SLIDER ===== */
.product-slider {
  width: 1000px;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 1000px; /* 2 images = 200% */
  animation: slide 6s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
}

/* Animation */
@keyframes slide {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(0); }
  55%  { transform: translateX(-100%); }
  100% { transform: translateX(-100%); }
}
.modern-btn {
    margin-top: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    background: linear-gradient(135deg, #1f8b3b, #0d6c26);
    position: relative;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    z-index: 1;
}

/* Shine Effect */
.modern-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-25deg);
    transition: 0.6s;
    z-index: 0;
}

.modern-btn:hover::before {
    left: 130%;
}


/* Hover Floating Effect */
.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Click Press Effect */
.modern-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.more {
    display: none;
    transition: 0.3s ease;
}
.certification-section {
    text-align: center;
    padding: 20px;
}

.certification-section h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;              /* Space between logos */
    flex-wrap: wrap;        /* Responsive wrap */
}

.certification-logos img {
    width: 120px;            /* Small logo size */
    height: auto;
    transition: transform 0.3s ease;
}

.certification-logos img:hover {
    transform: scale(1.1);  /* Slight zoom effect */
}

