/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Libre Baskerville', 'Georgia', serif;
}

body {
    line-height: 1.6;
    color: #333;
    color: #333333;
    background-color: #FAF8F5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo-container {
    display: flex;
    align-items: center;
    height: 60px; /* Match your navbar height */
}

.logo {
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto; /* Added for better control */
    height: auto; /* Maintains aspect ratio */
    object-fit: contain;
}

header {
    background-color: #FAF8F5;
}
/* Ensure navbar has a fixed height */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px; /* Set your desired navbar height */
    padding: 0 20px; /* Add some padding */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.5rem;
    color: #E7583C;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #365e48;
    margin-top: -4px; /* Adjust this to bring closer if needed */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E7583C;
}

.nav-links a:active {
  color: #f7941d; /* Your highlight color */
  font-weight: bold;
  position: relative;
}

/* Optional underline effect */
.nav-links a:active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f7941d;
}

/* Hero section */
.hero {
    background-image: linear-gradient(to right, 
                      rgba(255, 255, 255, 0.8) 0%, 
                      rgba(255, 255, 255, 0.5) 40%, 
                      rgba(0, 0, 0, 0.3) 100%), 
                      url('/assets/milk_cover.png');
    background-size: 100% auto; /* Reduced zoom level */
    background-position: 70% 85%; /* Better image framing */
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    width: 50%;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1A3C2F;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-btn {
    display: inline-block;
    background-color: #E7583C;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hero-btn:hover {
    background-color: #eb2c07;
    color: white;
}

/* About section */
.about-section {
    padding: 80px 0;
}

.about-container {
    display: flex;
    gap: 50px;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1A3C2F;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f7941d;
}

.who-we-are {
    margin-bottom: 40px;
}

.why-choose-list {
    list-style: none;
}

.why-choose-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 700;
}


.portfolio-list {
    list-style: none;
}

.portfolio-list li {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.portfolio-icon {
    width: 50px;
    height: 50px;
    background-color: #F1F1ED;
    border-radius: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #365e48;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.portfolio-icon-check {
    width: 50px;
    height: 50px;
    background-color: #365e48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.portfolio-text h3 {
    margin-bottom: 5px;
    color: #1b3d2c;
}

/* Clients section */
.clients-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.clients-title {
    margin-bottom: 40px;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
footer {
    background-color: #f5f2eb;
    color: #292e27;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #f7941d;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #292e27;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f7941d;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    background-color: #444;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #f7941d;
    transform: translateY(-3px);
}

.contact-info {
    color: #292e27;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* .contact-info i {
    margin-right: 10px;
    color: #f7941d;
} */

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #292e27;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 30px;
    }
    .mobile-nav {
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 0;
        height: auto;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
    }
    
    .nav-links li {
        margin-left: 0;
    }
    
    .hero {
        height: 50vh;
        margin-top: 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero::before {
        width: 100%;
        opacity: 0.5;
    }
    
    .client-logos {
        flex-direction: column;
    }
}

/* Contact section */
.contact-section {
    padding: 100px 0 80px;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #f7941d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 5px;
    color: #333;
}

.info-text p {
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #f7941d;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #f7941d;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background-color: #e07e0c;
}

.success-message {
    display: none;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive styles for contact page */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-section {
        padding: 120px 0 60px;
    }
}

/* Additional styles for applications page */
.applications-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/application_section_bg.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    position: relative;
    text-align: center;
}

.applications-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.applications-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    color: white;
}

.applications-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.applications-section {
    padding: 80px 0;
    text-align: center;
}

.applications-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.application-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
}

.application-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.application-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid #f7941d;
    transition: transform 0.3s, box-shadow 0.3s;
}

.application-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.applications-description {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

@media (max-width: 768px) {
    .application-row {
        gap: 30px;
    }
    
    .application-item {
        width: 150px;
    }
    
    .application-image {
        width: 140px;
        height: 140px;
    }
    
    .applications-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .application-row {
        gap: 20px;
    }
    
    .application-item {
        width: 120px;
    }
    
    .application-image {
        width: 110px;
        height: 110px;
    }
    
    .application-label {
        font-size: 1rem;
    }
}

/* Additional styles for about page */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/about_us.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    position: relative;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-section {
    padding: 80px 0 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.markets-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.markets-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.market-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: calc(33.333% - 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.market-icon {
    width: 70px;
    height: 70px;
    background-color: #f7941d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.market-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.market-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .market-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .market-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
}

 /* Additional styles for ingredients page */
.ingredients-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/ingredients.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    position: relative;
    text-align: center;
}

.ingredients-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.ingredients-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    color: white;
}

.ingredients-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ingredients-section {
    padding: 80px 0;
}

.ingredients-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.ingredients-intro p {
    color: #666;
    line-height: 1.8;
}

.ingredients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: calc(33.333% - 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #f7941d;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    width: 70px;
    height: 70px;
    background-color: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #f7941d;
    font-size: 1.5rem;
    border: 2px solid #f7941d;
}

.ingredient-card h3 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    font-size: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table th, .specs-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    color: #f7941d;
    font-weight: 500;
}

/* .specs-table tr:last-child td {
    border-bottom: none;
} */

.download-btn {
    display: inline-block;
    background-color: #f7941d;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 20px;
    font-size: 0.9rem;
}

.download-btn:hover {
    background-color: #e07e0c;
}

@media (max-width: 992px) {
    .ingredient-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .ingredients-hero h1 {
        font-size: 2.5rem;
    }
    
    .ingredient-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .ingredients-hero h1 {
        font-size: 2rem;
    }
    
    .specs-table {
        font-size: 0.9rem;
    }
}