/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2540;
    --secondary-color: #c9a961;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(26, 37, 64, 0.1);
    --shadow-hover: 0 8px 30px rgba(26, 37, 64, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.leaf-loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Management */
.section {
    display: none;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section.active {
    display: block;
    animation: sectionFadeIn 0.6s ease forwards;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 100px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    text-decoration: none;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-info i {
    color: var(--accent-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Google Translate Styling */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

#google_translate_element {
    display: inline-block;
}

/* Style the Google Translate dropdown */
.goog-te-combo {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    color: var(--white);
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    min-width: 170px;
}

.goog-te-combo:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.goog-te-combo option {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
}

/* Hide Google Translate attribution */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0;
}

.goog-te-gadget .goog-te-combo {
    margin: 0;
}
.translate-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.translate-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .translate-wrapper {
        width: 100%;
    }
}
/* Mobile responsive */
@media (max-width: 768px) {
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }
    
    #google_translate_element {
        width: 100%;
    }
    
    .goog-te-combo {
        width: 100%;
        max-width: 200px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
}



/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26, 37, 64, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 25px rgba(26, 37, 64, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(26, 37, 64, 0.2);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05) rotate(5deg);
}

.logo-text h1 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 11px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    margin-top: 15px;
    overflow: hidden;
    border: 2px solid var(--bg-light);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 15px 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 30px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3550 50%, var(--primary-color) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
    margin-top: 40px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s backwards;
    font-weight: 300;
    color: var(--accent-color);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 45px;
    opacity: 0.85;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s backwards;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.8s backwards;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeInUp 1s ease 1s backwards;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: var(--accent-color);
}

.feature-item span {
    font-size: 15px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--accent-color);
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-8px) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background: var(--white);
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-image {
    position: relative;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 37, 64, 0.2);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 25px;
    right: 9px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideInRight 1s ease 0.3s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-year {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.badge-text {
    display: block;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 5px;
}

.image-float-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
}

.about-text {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.about-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 37, 64, 0.15);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.about-feature-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Founder Section */
.founder-section {
    margin-top: 80px;
}

.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(26, 37, 64, 0.08);
    animation: fadeInUp 1s ease;
    border: 2px solid var(--bg-light);
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(26, 37, 64, 0.2);
}

.founder-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.founder-badge i {
    color: var(--white);
    font-size: 22px;
}

.founder-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.founder-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.founder-contact {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.founder-contact a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-contact a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.founder-contact i {
    color: var(--accent-color);
}

.founder-description {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.detail-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(26, 37, 64, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(26, 37, 64, 0.15);
    border-color: var(--secondary-color);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.detail-icon i {
    font-size: 32px;
    color: var(--white);
}

.detail-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.detail-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    background: var(--bg-light);
    padding: 120px 0;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 35px;
    border: 2px solid var(--secondary-color);
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-size: 15px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 37, 64, 0.08);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(26, 37, 64, 0.2);
    border-color: var(--secondary-color);
}

.product-card.hide {
    display: none;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
}

.product-badge.popular {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.product-badge.fresh {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.product-badge.quality {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.product-badge.nutritious {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
}

.product-badge.superfood {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
}

.product-image {
    background: linear-gradient(135deg, var(--primary-color), #2a3550);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 37, 64, 0) 0%,
        rgba(26, 37, 64, 0.3) 100%
    );
    z-index: 2;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 37, 64, 0) 0%,
        rgba(26, 37, 64, 0.5) 100%
    );
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

 .product-image i {
    font-size: 90px;
    color: var(--accent-color);
    transition: var(--transition);
    z-index: 1;
} 

 .product-card:hover .product-image i {
    transform: scale(1.1) rotateY(180deg);
} 

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag {
    background: var(--bg-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    border: 1px solid var(--secondary-color);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

.btn-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.product-image {
    background: linear-gradient(135deg, var(--primary-color), #2a3550);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 120px 0;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(26, 37, 64, 0.08);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(26, 37, 64, 0.15);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
}

.contact-icon i {
    font-size: 32px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* ===============================
   CONTACT FORM – PRODUCTION UI
================================ */

.contact-form-wrapper {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95),
            rgba(248, 249, 252, 0.95));
    padding: 52px;
    border-radius: 22px;
    border: 1px solid rgba(26, 37, 64, 0.06);
    box-shadow:
        0 25px 60px rgba(26, 37, 64, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(circle at top right,
            rgba(201, 169, 97, 0.08),
            transparent 55%);
    pointer-events: none;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===============================
   GRID
================================ */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 26px;
}

/* ===============================
   FORM GROUP
================================ */

.form-group {
    position: relative;
    margin-bottom: 26px;
}

/* ===============================
   INPUTS / SELECT / TEXTAREA
================================ */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1.8px solid rgba(26, 37, 64, 0.08);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-dark);
    font-size: 15px;
    font-family: inherit;
    line-height: 1.4;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        transform 0.2s ease;
}

/* Placeholder refinement */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa3b2;
    letter-spacing: 0.2px;
}

/* ===============================
   FOCUS STATE (Premium Feel)
================================ */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--secondary-color);
    box-shadow:
        0 0 0 4px rgba(201, 169, 97, 0.15),
        0 8px 20px rgba(26, 37, 64, 0.12);
    transform: translateY(-1px);
}

/* ===============================
   SELECT (Custom Arrow)
================================ */

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%239aa3b2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

/* ===============================
   TEXTAREA
================================ */

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

/* ===============================
   SUBMIT BUTTON
================================ */

.btn-submit {
    width: 100%;
    padding: 19px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.3s ease;
}

.btn-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-submit:hover::after {
    transform: translateX(100%);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(26, 37, 64, 0.18);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(26, 37, 64, 0.15);
}

/* ===============================
   ACCESSIBILITY
================================ */

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: none;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 36px 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}


/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* QR Code in Footer */
.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Changed from center to flex-start */
    padding: 20px 0;
}

.qr-code-image {
    width: 110px;
    height: 110px;
    border-radius: 15px;
    background: var(--white);
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    object-fit: contain;
}

.qr-code-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.qr-code-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.5px;
    width: 180px; /* Match QR code width */
    align-self: flex-start; /* Align with QR code */
    margin-left: 2px;
}

/* Responsive adjustments for QR Code */
@media (max-width: 768px) {
    .qr-code-image {
        width: 160px;
        height: 160px;
    }
    
    .qr-code-text {
        font-size: 13px;
        width: 160px; /* Match responsive QR code width */
    }
}

@media (max-width: 480px) {
    .qr-code-image {
        width: 140px;
        height: 140px;
        padding: 10px;
    }
    
    .qr-code-text {
        font-size: 12px;
        margin-top: 12px;
        width: 140px; /* Match responsive QR code width */
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.6);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(26, 37, 64, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        max-height: 500px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .founder-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .company-details {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
        .business-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
     .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    .top-bar {
        padding: 10px 0;
    }

    .contact-info {
        gap: 15px;
        font-size: 12px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .founder-card {
        padding: 25px;
    }

    .detail-card {
        padding: 30px 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
select,
textarea {
    transition: var(--transition);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .navbar,
    .hero-section,
    .back-to-top,
    .loading-screen {
        display: none;
    }

    .section {
        display: block !important;
        page-break-inside: avoid;
    }
}

.section {
    display: none;
}

.section.active {
    display: block;
}

/* Hero Products Preview */
.hero-products-preview {
    margin-top: 80px;
    animation: fadeInUp 1s ease 1.2s backwards;
    margin-bottom: 40px;
}

.hero-products-preview h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--white);
    text-align: center;
}

.hero-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.hero-product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.hero-product-card:hover .hero-product-icon {
    transform: rotateY(360deg);
}

.hero-product-icon i {
    font-size: 40px;
    color: var(--white);
}

.hero-product-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 700;
}

.hero-product-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 250px;
}

.btn-view-all:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Certifications Section */
.certifications-section {
    background: var(--white);
    padding: 120px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.certification-card {
    background: var(--bg-light);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(26, 37, 64, 0.08);
    border: 2px solid transparent;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 37, 64, 0.15);
    border-color: var(--secondary-color);
}

.cert-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.certification-card:hover .cert-icon {
    transform: rotateY(360deg);
}

.cert-icon i {
    font-size: 40px;
    color: var(--white);
}

.certification-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.cert-number {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.cert-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.certification-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--bg-light);
}

.certification-footer p {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.certification-footer i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .hero-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-products-preview h3 {
        font-size: 24px;
    }

    .hero-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Business Info Grid */
.business-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.business-info-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(26, 37, 64, 0.08);
    border: 2px solid var(--bg-light);
}

.business-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 37, 64, 0.15);
    border-color: var(--accent-color);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.business-info-card:hover .business-icon {
    transform: rotateY(360deg);
}

.business-icon i {
    font-size: 36px;
    color: var(--white);
}

.business-info-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.business-detail {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.8;
}
