/* Global styles */
:root {
    --primary-color: #0077B6;  /* Royal Blue - Main CTA */
    --secondary-color: #105791;  /* Deep Green - Eco-friendly tone */
    --accent-color: #00A8E8;  /* Cyan Blue - Subtle highlights */
    --dark-color: #222222;  /* Dark Charcoal - Strong text & contrast */
    --light-color: #F4F4F4;  /* Soft Off-White - Background */
    --white-color: #FFFFFF;  /* Pure White */
    --gray-color: #A0A0A0;  /* Soft Gray - Borders, secondary text */
}

body {
    font-family: 'Halvetica', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Header styles */
.navbar {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    background-color: #f8f9fa;
}

.dropdown-item:hover {
    background-color: #e9ecef;
    color: var(--secondary-color);
}

/* Hero section */
.hero-section {
    position: relative;
    background: url('../images/herbs.webp') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-content{
        z-index: 100;
    position: relative;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* RTL Support */
[dir="rtl"] .hero-section {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}

/* Product platforms */
.platform-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Innovation section */
.innovation-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
}

.innovation-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact section */
.contact-section {
    background-color: var(--light-color);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    margin-top: auto;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

.social-links a {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .platform-card,
    .innovation-card {
        margin-bottom: 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Product section styles */
.product-section {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.product-section h2 {
    color: var(--primary-color);
}

.product-section .lead {
    color: var(--secondary-color);
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body i {
    color: var(--secondary-color);
}

/* Carousel Styles */
.carousel-section {
    background-color: var(--light-color);
}

.carousel-item {
    padding: 2rem 0;
}

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

.carousel-content .lead {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.carousel-content p {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: var(--secondary-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* Career Page Styles */
.career-hero {
    background-color: var(--light-color);
}

.career-hero img {
    max-height: 400px;
    object-fit: cover;
}

.why-join-us .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.why-join-us .card:hover {
    transform: translateY(-5px);
}

.why-join-us .card i {
    color: var(--primary-color);
}

.current-openings .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.current-openings .card:hover {
    transform: translateY(-5px);
}

.current-openings .card h3 {
    color: var(--primary-color);
}

.current-openings .card ul li {
    color: var(--dark-color);
}

.current-openings .card ul li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.how-to-apply .card {
    border: none;
}

.how-to-apply .card i {
    color: var(--primary-color);
}

.how-to-apply h3 {
    color: var(--primary-color);
} 