:root {
    --primary-color: #1a5276;
    --secondary-color: #2980b9;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

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

/* Navbar Styling */
.navbar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    color: white;
}

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

/* Hero Section */
/*.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./imgs/Web 03.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    
}

.hero-section h1 {
    font-size: 3.5rem;
    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;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
} */

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}
.carousel-section {
    margin-top: 76px;
}

.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
}

.carousel-item-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/carousel-1.jpg');
    background-size: cover;
    background-position: center;
}

.carousel-item-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/carousel-2.webp');
    background-size: cover;
    background-position: center;
}

.carousel-item-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/carousel-3.jpg');
    background-size: cover;
    background-position: center;
}

.carousel-static-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.carousel-static-caption h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.carousel-static-caption p {
    color: var(--white);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Milestones Section */
.milestone-card, .achievement-card {
    background: var(--white);
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.milestone-card:hover, .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.milestone-card i, .achievement-card i {
    color: var(--accent-color);
}

/* Contact Section */
.contact-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
    }
    
    .carousel-static-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-static-caption p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.milestone-card, .achievement-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../imgs/other-page-banners.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    margin-top: 62px;
}

.about-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mission-section .card-body{
    background-color: white;
    border-radius: 10px;
}

/* Fresh Foods Page Styles */
.fresh-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../imgs/other-page-banners.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    margin-top: 62px;
}

.fresh-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-section .row{
    clear:both

}

.product-section .column{
    width: 25%;
    float: left;
}

/* Quality Assurance Section */
.bg-light {
    background-color: #f8f9fa !important;
}

.fa-2x {
    color: #007bff;
}

/* Frozen Foods Page Styles */
.frozen-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../imgs/other-page-banners.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    margin-top: 62px;
}

.frozen-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-card{
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info .row{clear:both}

.contact-info .column{
    width: 50%;
    
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-body {
    background-color: #f8f9fa;
    border-radius: 10px;
}

footer a {
    transition: color 0.3s ease;
}
footer p{
    color: white;
}
footer a:hover {
    color: #007bff !important;
} 