:root {
    --primary-green: #2d5f4f;
    --secondary-green: #4a8068;
    --accent-coral: #ff6b6b;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


 .read-more {
        color: var(--secondary-green);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        padding: 8px 16px;
        border-radius: 8px;
        background: rgba(45, 95, 79, 0.05);
    }

    .read-more:hover {
        background: var(--primary-green);
        color: white;
        gap: 12px;
        transform: translateX(5px);
    }

    .read-more::after {
        content: '→';
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: var(--light-bg);
    color: var(--dark-text);
}

/* Navigation Styles */
.navbar {
    background: white !important;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000 !important;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: var(--light-bg);
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: var(--primary-green);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d5f4f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-quote {
    background: var(--accent-coral);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Hero Slider Section */
.hero-section {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 70vh;
}




.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(45, 95, 79, 0.75), rgba(74, 128, 104, 0.75)); */
}


.slide-1 {
    background-image: url('http://localhost/alnabi/assets/image/banner.jpg');
}

.slide-2 {
    background-image: url('http://localhost/alnabi/assets/image/banner-2.jpg');
}

.slide-3 {
    background-image: url('http://localhost/alnabi/home/assets/image/banner.jpg');
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.hero-arrows:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-hero {
    background: var(--accent-coral);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End of Hero Slider Section */

/* Categories Section */









/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--secondary-green);
    margin-bottom: 20px;
}

.about-stats {
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
    border-radius: 20px !important;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-green);
}

.choose-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-card:hover .choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.choose-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.choose-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-coral);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.blog-date {
    color: #666;
}

.blog-category {
    background: var(--accent-coral);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--accent-coral);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 95, 79, 0.3);
}

.certificates-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.certificate-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-coral);
}

.certificate-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-coral), #ff8a80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
    transform: scale(1.1);
}

.certificate-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.certificate-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.country-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.country-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--secondary-green);
}

.country-flag {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.country-card:hover .country-flag {
    background: var(--accent-coral);
    transform: scale(1.1);
}

.country-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0;
}

.export-note {
    font-size: 1.1rem;
    color: var(--secondary-green);
    font-weight: 500;
    background: var(--light-bg);
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
}

.products-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-coral);
    border-radius: 2px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    height: 100%;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-green);
}

.product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-green);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: var(--secondary-green);
    color: white;
    transform: scale(1.1);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.site-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a3d32 100%);
    color: #fff;
    padding: 3rem 1rem 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral), var(--secondary-green), var(--accent-coral));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-coral);
    border-radius: 2px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-coral);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact p::before {
    content: '●';
    color: var(--accent-coral);
    font-size: 0.6rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--accent-coral);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-coral);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* Contact us page specific styles */
#contact {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
}

#contact-header {
    text-align: center;
    margin-bottom: 50px;
}

#contact-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    margin-top: 20px;

}

#contact-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-green);
}

#contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Details Section */
#contact-details {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#details-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.detail-item {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.detail-icon {
    color: var(--accent-coral);
    font-size: 1.5rem;
    min-width: 30px;
}

.detail-content {
    flex: 1;
}

.detail-item h3 {
    color: var(--secondary-green);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

#contact-address,
#contact-email,
#contact-phone,
#contact-hours {
    color: var(--dark-text);
    font-size: 1rem;
}

/* Form Section */
#contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#form-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-green);
    font-weight: 600;
}

#name-input,
#email-input,
#subject-input,
#message-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

#name-input:focus,
#email-input:focus,
#subject-input:focus,
#message-input:focus {
    outline: none;
    border-color: var(--secondary-green);
}

#message-input {
    resize: vertical;
    min-height: 120px;
}

#submit-button {
    background-color: var(--accent-coral);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#submit-button:hover {
    background-color: #ff5252;
}

@media (max-width: 768px) {
    #contact-container {
        grid-template-columns: 1fr;
    }
}

/* End of contact us page specific styles */

/* about us page specific styles */

#about-us {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
}

#about-header {
    text-align: center;
    margin-bottom: 50px;
}

#about-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

#about-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-green);
    max-width: 700px;
    margin: 0 auto;
}

#about-content {

    margin-bottom: 50px;
}

#about-stats {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

#stats-title {
    text-align: center;
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 30px;
}

#stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-coral);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--secondary-green);
    font-size: 1rem;
}

#about-image {
    width: 100%;
    height: 400px;
    background-color: var(--secondary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

#about-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#about-text h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#about-description {
    color: var(--dark-text);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

#about-values {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#values-title {
    text-align: center;
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

#values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-coral);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--dark-text);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    #about-content {
        grid-template-columns: 1fr;
    }

    #about-image {
        height: 300px;
    }
}

/* end of about us page specific styles */


/* Smooth scroll for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Animation for fade-in elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Products page specific styles */

    .product-detail {
        background: white;
        border-radius: 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        overflow: hidden;
    }

    .product-detail-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    /* Image Gallery */
    .product-gallery {
        padding: 40px;
        background: var(--light-bg);
    }

    .main-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.main-image-wrapper.zoomed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
    cursor: zoom-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.main-image-wrapper.zoomed .main-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

   
    .product-badge-detail {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--accent-coral);
        color: white;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    .thumbnail-gallery {
        display: flex;
        gap: 15px;
        overflow-x: auto;
    }

    .thumbnail {
        width: 100px;
        height: 100px;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        border: 3px solid transparent;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .thumbnail:hover,
    .thumbnail.active {
        border-color: var(--primary-green);
        transform: translateY(-3px);
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Product Info */
    .product-info-section {
        padding: 50px;
    }

    .product-title {
        font-size: 2.5rem;
        color: var(--primary-green);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .product-subtitle {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 30px;
    }

    .product-rating {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

   
    .product-price {
        font-size: 2rem;
        color: var(--accent-coral);
        font-weight: 700;
        margin-bottom: 30px;
    }

    .price-note {
        font-size: 0.9rem;
        color: #666;
        margin-top: 10px;
    }

    .product-description {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
    }

    /* Key Features */
    .key-features {
        margin-bottom: 30px;
    }

    .key-features h3 {
        font-size: 1.5rem;
        color: var(--primary-green);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    
    /* Action Buttons */
    .action-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }

    .btn-primary {
        flex: 1;
        padding: 18px 30px;
        background: var(--accent-coral);
        color: white;
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-primary:hover {
        background: #ff5252;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    }

    .btn-secondary {
        flex: 1;
        padding: 18px 30px;
        background: white;
        color: var(--primary-green);
        border: 2px solid var(--primary-green);
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-secondary:hover {
        background: var(--primary-green);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(45, 95, 79, 0.3);
    }

    /* Product Meta */
    .product-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 2px solid var(--light-bg);
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .meta-label {
        font-weight: 700;
        color: var(--primary-green);
    }

    .meta-value {
        color: #666;
    }

    /* Tabs Section */
    .product-tabs {
        background: white;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
    }

    .tabs-header {
        display: flex;
        border-bottom: 2px solid var(--light-bg);
    }

    .tab-btn {
        padding: 20px 40px;
        background: transparent;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .tab-btn:hover {
        color: var(--primary-green);
    }

    .tab-btn.active {
        color: var(--primary-green);
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent-coral);
    }

    .tab-content {
        display: none;
        padding: 40px;
    }

    .tab-content.active {
        display: block;
    }

    .tab-content h3 {
        font-size: 1.8rem;
        color: var(--primary-green);
        margin-bottom: 20px;
    }

    .tab-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

    /* Specifications Table */
    .specifications-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .specifications-table tr {
        border-bottom: 1px solid var(--light-bg);
    }

    .specifications-table td {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .specifications-table td:first-child {
        font-weight: 700;
        color: var(--primary-green);
        width: 40%;
    }

    .specifications-table td:last-child {
        color: #666;
    }

    /* Certifications */
    .certifications {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .cert-badge {
        padding: 15px 25px;
        background: var(--light-bg);
        border-left: 4px solid var(--accent-coral);
        font-weight: 600;
        color: var(--primary-green);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cert-badge i {
        color: var(--accent-coral);
        font-size: 1.5rem;
    }

    /* Related Products */
    .related-products {
        margin-top: 50px;
    }

   
    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }

    .related-card {
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .related-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .related-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .related-card:hover .related-image {
        transform: scale(1.1);
    }

    .related-info {
        padding: 25px;
    }

    .related-info h4 {
        color: var(--primary-green);
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .related-info p {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .view-btn {
        display: inline-block;
        padding: 10px 20px;
        background: var(--primary-green);
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .view-btn:hover {
        background: var(--secondary-green);
    }

    @media (max-width: 992px) {
        .product-detail-content {
            grid-template-columns: 1fr;
        }

        .product-info-section {
            padding: 30px;
        }

        .main-image-wrapper {
            height: 400px;
        }

        .product-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .action-buttons {
            flex-direction: column;
        }

        .product-meta {
            grid-template-columns: 1fr;
        }

        .tabs-header {
            flex-direction: column;
        }

        .tab-content {
            padding: 20px;
        }

        .related-grid {
            grid-template-columns: 1fr;
        }
    }


    .category-card{
        background: white;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }


    /* category page specific styles */

     .product-showcase {
        background: white;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }

    .showcase-content {
        position: relative;
        height: 500px;
        overflow: hidden;
    }

    .showcase-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        image-rendering: auto;
    }

    .showcase-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
        padding: 60px 50px 40px;
        color: white;
    }

    .showcase-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .showcase-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .showcase-btn {
        padding: 14px 35px;
        border: 2px solid var(--gold);
        background: transparent;
        color: var(--gold);
        border-radius: 0;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .showcase-btn:hover {
        background: var(--gold);
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    }

    .showcase-btn i {
        font-size: 1.1rem;
    }

    /* Related Products Section */
    .related-section {
        margin-top: 40px;
    }

    .section-header {
        background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
        color: white;
        padding: 20px 30px;
        border-radius: 0;
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
    }

    .no-products {
        background: #d1ecf1;
        color: #0c5460;
        padding: 25px 30px;
        border-radius: 0;
        border-left: 5px solid #17a2b8;
        font-size: 1.1rem;
    }

    /* Product Grid for Related Items */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .product-card {
        background: white;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .product-image-wrapper {
        position: relative;
        aspect-ratio: 1 / 1;
        /* makes it a square */
        overflow: hidden;
        background: var(--light-bg);
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-image {
        transform: scale(1.1);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--accent-coral);
        color: white;
        padding: 8px 16px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .product-info {
        padding: 25px;
    }

    .product-info h3 {
        color: var(--primary-green);
        font-size: 1.4rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .product-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .spec-tag {
        background: var(--light-bg);
        padding: 6px 12px;
        font-size: 0.85rem;
        color: var(--primary-green);
        font-weight: 600;
        border: 1px solid rgba(45, 95, 79, 0.1);
    }

    .product-footer {
        display: flex;
        gap: 10px;
    }

    .inquiry-btn {
        flex: 1;
        padding: 12px;
        background: var(--primary-green);
        color: white;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .inquiry-btn:hover {
        background: var(--secondary-green);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .showcase-content {
            height: 400px;
        }

        .showcase-overlay {
            padding: 40px 25px 30px;
        }

        .showcase-title {
            font-size: 1.8rem;
        }

        .showcase-btn {
            padding: 12px 25px;
            font-size: 0.9rem;
        }

        .section-header h2 {
            font-size: 1.4rem;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }
    }


    