/* Global Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #13306a;
    box-sizing: border-box;

}



/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #13306a;
    color: white;
}

.contact-info span {
    margin-right: 15px;
}

.language-buttons {
    display: flex;
    gap: 10px;
}

.language-buttons button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-buttons button:hover {
    background-color: #ff9e00;
    color: #13306a;
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .language-buttons {
        position: relative; /* Allow positioning relative to the top of the viewport */
        bottom: 10px; /* Move buttons to the top */
        left: 20%; /* Center the buttons horizontally */
        transform: translateX(-50%); /* Adjust centering */
        z-index: 1000; /* Ensure buttons appear above other elements */
        margin-top: 20px;
    }
}



/* Logo Section */
.logo-section {
    background-color: #fff;
    text-align: center;
}

/* Container for Logos */
.logo-box {
    display: flex;
    justify-content: space-between; /* Logos on left and right */
    align-items: center;
    padding: 0; /* Remove unnecessary padding */
    width: 100%;
    max-width: 1500px; /* Adjust max-width for better responsiveness */
    margin: 0 auto; /* Center the container */
}

/* Left Logo */
.left-logo {
    max-width: 15%; /* Set a fixed max-width for left logo */
    height: auto; /* Maintain aspect ratio */
    margin-left: 1%; /* Adjust spacing on the left */
}

/* Right Logo */
.right-logo {
    max-width: 100%; /* Set a smaller max-width for right logo */
    height: auto; /* Maintain aspect ratio */
    margin-right: 0%; /* Adjust spacing on the right */
}



/* Navigation Bar */
.nav-bar {
    background-color: #13306a;
    justify-content: center;
    text-align: center;
    padding: 9px 0;
    z-index: 100;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 38px;  /* Increased space between each word */
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    padding: 0px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 200;
}


.nav-links a:hover {
    text-decoration: underline;
    transform: scale(1.40); /* Slight zoom on hover */
}

/* Image Slider Section */
.image-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
    cursor: grab; /* Show grab cursor when hovering over the slider */
    
}

.slider-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-right 50s linear infinite; /* Smooth scrolling by default */
}

.slider-content img {
    width: 500px;
    height: auto;
    margin: 0 30px;
    transition: transform 0.3s ease; /* Smooth transition when dragging */
}

/* Pause the scrolling animation when dragging */
.image-slider.dragging .slider-content {
    animation-play-state: paused;
}

/* General Styles for Brochure Section */
.brochure-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Trigger Button Styles */
.brochure-trigger {
    background-color: #1d3557;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.brochure-trigger:hover {
    background-color: #457b9d;
    transform: scale(1.05);
}

/* Modal Overlay */
.brochure-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.brochure-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

.brochure-content h3 {
    font-size: 24px;
    color: #1d3557;
    margin-bottom: 15px;
}

.brochure-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.brochure-download-btn {
    display: inline-block;
    background-color: #1d3557;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.brochure-download-btn:hover {
    background-color: #457b9d;
    transform: scale(1.05);
}

.close-btn {
    margin-top: 15px;
    background-color: #e63946;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.close-btn:hover {
    background-color: #d62828;
    transform: scale(1.05);
}

/* Animation for Modal */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cashew Processing Section */
.cashew-processing {
    background-color: #f9f9f9; /* Light grey for contrast */
    padding: 50px 20px;
    text-align: left; /* Left-aligned for professional presentation */
    color: #333;
}

.cashew-processing .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cashew-processing h1 {
    font-size: 2.5rem;
    color: #13306a; /* Match theme color */
    margin-bottom: 20px;
    text-align: center; /* Centered heading */
}

.cashew-processing p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .cashew-processing h1 {
        font-size: 2rem;
    }

    .cashew-processing p {
        font-size: 1rem;
    }
}

/* Why Us Section */
.why-us {
    background-color: #13306a; /* Deep blue for contrast */
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.why-us .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff9e00; /* Golden color for heading */
}

.why-us .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.why-us .feature {
    background-color: #1a4489; /* Slightly lighter blue for cards */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us .feature h2 {
    font-size: 1.5rem;
    color: #ff9e00; /* Golden headings */
    margin-bottom: 10px;
}

.why-us .feature p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.why-us .feature:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

@media screen and (max-width: 768px) {
    .why-us h1 {
        font-size: 2rem;
    }

    .why-us .feature h2 {
        font-size: 1.3rem;
    }

    .why-us .feature p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #eaf2f8;
    color: black;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links, .footer-contact, .footer-social {
    width: 30%;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    color: black;
    text-decoration: none;
}

.footer-social a {
    margin-right: 10px;
}

.footer-social img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    background-color: #e6e6fa;
    color: black;
    padding: 10px;
    font-size: 14px;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    /* Stack the footer items vertically on mobile */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links, .footer-contact, .footer-social {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul li {
        margin: 5px 0;
    }

    .footer-social {
        margin-top: 15px;
    }

    .footer-bottom {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 0;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }
}



/*Product Styling*/
/* Products Section */
.products-section {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #f5f5f5, #eaeaea);
}

.products-section h2 {
    font-size: 2.5rem;
    color: #002a60;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Product Cards Container */
.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
    justify-items: center;
}

/* Styling individual product cards */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Card image styling */
.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Heading Styling (Name, Model, etc.) */
.product-card h3 {
    font-size: 1.6rem; /* Slightly larger for better visibility */
    color: #002a60;
    margin-top: 15px;
    font-weight: bold;
}

/* Product Details (Model, Material, Purpose, etc.) */
.product-card p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
    text-align: left;  /* Align text to the left for better readability */
    padding-left: 20px; /* Indent text slightly */
    width: 100%; /* Ensure text takes up the whole width */
}

/* Style for the product card's p tags to add emphasis to headings */
.product-card p strong {
    font-weight: bold;
    color: #002a60; /* Match heading color */
}

/* Add spacing between details to separate each line visually */
.product-card p + p {
    margin-top: 10px;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
    }
}

@media screen and (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(1, 1fr); /* 1 card per row on smaller screens */
    }
    
}

/* Smooth scrolling animation */
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Mobile Devices (Width ≤ 767px) */
@media screen and (max-width: 767px) {
    .top-bar {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center align content */
        padding: 0px 0px; /* Add more padding for touch-friendliness */
    }

    /* Contact Info Adjustments */
    .contact-info {
        margin-bottom: 10px; /* Add spacing between sections */
        font-size: 15px;
    }

    /* Social Links Adjustments */
    .social-links a {
        margin: 0 8px; /* Reduce spacing between links */
        font-size: 15px; /* Adjust font size for smaller screens */
    }
    .logo-section {
        padding: 10px;
    }

    .logo-box {
        flex-direction: column; /* Stack the logos vertically */
        align-items: center;
        padding: 15px;
    }

    .left-logo {
        margin-left: 0; /* Remove the left margin */
        max-width: 50%;

    }

    .right-logo {
        margin-right: 0; /* Remove the right margin */
        display: none;
    }
}

/* Smaller Mobile Devices (Width ≤ 480px) */
@media screen and (max-width: 480px) {
    .logo-section {
        padding: 5px;
    }

    .logo-box {
        flex-direction: column; /* Stack logos */
        align-items: center;
        
    }

    .left-logo, .right-logo {
        max-width: 50%; /* Make logos bigger for small screens */
    }

    .left-logo {
        margin-left: 0; /* Remove extra margin */
    }

    .right-logo {
        margin-right: 0; /* Remove extra margin */
        display: none;
    }
}

/* Tablets in Portrait Mode (Width 768px to 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .logo-box {
        flex-direction: row; /* Keep logos in a row */
        justify-content: space-between; /* Space logos out */
    }

    .left-logo {
        max-width: 45%;
    }

    .right-logo {
        max-width: 35%;
    }
}
/* Basic styles for the navigation */
.nav-bar {
    position: relative;
    background-color: #13306a;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;  /* Align hamburger icon to the right */
    align-items: center;
}

/* Default (Desktop/Tablet) Styles: Keep the navigation links visible */
.nav-links {
    display: flex;
    gap: 10px;
}

/* Hide hamburger icon and navigation links for larger screens */
.hamburger-icon {
    display: none; /* Hidden on larger screens */
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Devices (Width ≤ 767px) */
@media screen and (max-width: 767px) {
    /* For the logo section, place it to the left */
    .logo-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1px;
    }

    .logo-box {
        width: auto; /* Adjust the logo box to fit the left side */
    }

    /* Hamburger icon style */
    .hamburger-icon {
        cursor: pointer;
        font-size: 30px;
        color: white;
        display: none; /* Hidden on larger screens */
    }

    /* Show hamburger icon on small screens */
    @media (max-width: 768px) {
        .hamburger-icon {
            display: block; /* Show on mobile screens */
        }
    }

    /* Hide navigation links by default */
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 50px;
        right: 0; /* Align to the right */
        background-color: #13306a;
        padding: 20px;
        border-radius: 5px;
        width: 200px;
    }

    /* Show the navigation links when the menu is active */
    .nav-links.active {
        display: flex;
    }

    /* Navigation link hover effect */
    .nav-links a {
        font-size: 15px;
        color: white;
        padding: 15px 25px;
        text-align: center;  /* Center the text of each link */
        margin: -5px ;
    }

    .nav-links a:hover {
        text-decoration: underline;
    }
    
}


/* About Us Section */
.about-us {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2980b9;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 30px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #2c3e50;
}

/* Buttons and Links */
a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f39c12;
}


/* Get a Quote */
.quote-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #2980b9;
    outline: none;
}

textarea {
    min-height: 150px;
}

button.submit-btn {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #1f5b82;
}

/* Animations */
input, textarea {
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

input:nth-child(odd), textarea:nth-child(odd) {
    animation-delay: 0.3s;
}

input:nth-child(even), textarea:nth-child(even) {
    animation-delay: 0.6s;
}

button.submit-btn {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-container {
        padding: 20px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    input, textarea {
        font-size: 14px;
    }

    button.submit-btn {
        font-size: 16px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-container h1 {
    font-size: 36px;
    color: #1d3557;
    margin-bottom: 20px;
}

.faq-container p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
}

.faq {
    list-style: none;
    padding: 0;
}

.faq-item {
    background-color: #f1f1f1;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.faq-answer {
    padding: 15px;
    background-color: #f1f1f1;
    display: none;
    font-size: 16px;
    color: #333;
}

/* Plus sign styles */
.plus-sign {
    font-size: 30px;
    color: #1d3557;
}

/* Expand and collapse animation */
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .plus-sign {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    font-family: 'Arial', sans-serif;
}

.contact-container {
    display: flex;
    justify-content: center; /* Center the form */
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form Card */
.contact-form-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 600px; /* Adjust width of the card */
    width: 100%; /* Full width for responsiveness */
}

.contact-form-card:hover {
    transform: translateY(-10px);
}

.contact-form-card h2 {
    font-size: 28px;
    color: #1d3557;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-card .input-group {
    margin-bottom: 20px;
}

.contact-form-card label {
    font-size: 16px;
    color: #333333;
    margin-bottom: 5px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-top: 8px;
    transition: border-color 0.3s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #457b9d;
    outline: none;
}

.contact-form-card button {
    background-color: #1d3557;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form-card button:hover {
    background-color: #457b9d;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact-form-card {
        max-width: 100%;
    }
}


/* Footer */
.footer {
    background-color: #eaf2f8;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    color: black;
    text-decoration: none;
}

.footer-social a {
    margin-right: 10px;
}

.footer-bottom {
    background-color: #e6e6fa;
    padding: 5px;
    font-size: 14px;
}
