/* STREAMING_CHUNK:Configuring variables and base styles... /
:root {
--primary-color: #0A3D62;   / Navy Blue /
--secondary-color: #D4AF37; / Corporate Gold /
--accent-color: #2E8B57;    / Trade / Agri Green */
--bg-light: #F4F6F9;
--bg-white: #FFFFFF;
--text-dark: #333333;
--text-muted: #666666;
--transition: all 0.3s ease;
}

{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
color: var(--text-dark);
line-height: 1.6;
background-color: var(--bg-light);
}

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

/* STREAMING_CHUNK:Styling navigation and header components... */
.main-header {
background-color: var(--bg-white);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 999;
padding: 10px 0;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo img { height: 75px; width: auto; }

.nav-list { list-style: none; display: flex; align-items: center; gap: 25px; }

.nav-item { font-weight: 600; color: var(--primary-color); border-bottom: 2px solid transparent; }

.nav-item:hover { color: var(--secondary-color); border-color: var(--secondary-color); }

.mobile-menu-toggle { display: none; font-size: 1.8rem; background: none; border: none; color: var(--primary-color); cursor: pointer; }

/* STREAMING_CHUNK:Structuring responsive grid layouts (1-2-3 Logic)... /
/ Applied to Features, Services, and Grids /
.grid-3, .features-list, .welcome-grid {
display: grid;
gap: 30px;
grid-template-columns: 1fr; / Mobile: 1 column */
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
.grid-3, .features-list, .welcome-grid {
grid-template-columns: repeat(2, 1fr);
}
}

/* Computer: 3 columns */
@media (min-width: 1024px) {
.grid-3, .features-list {
grid-template-columns: repeat(3, 1fr);
}
}

/* STREAMING_CHUNK:Styling cards and functional components... */
.card {
background-color: var(--bg-white);
border-radius: 8px;
padding: 30px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
transition: var(--transition);
}

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

.features-list li {
padding: 15px;
background-color: var(--bg-light);
border-left: 4px solid var(--accent-color);
font-weight: 600;
}

/* STREAMING_CHUNK:Defining contact and form layouts... */
.contact-layout {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
}

@media (min-width: 768px) {
.contact-layout { grid-template-columns: 1fr 1.2fr; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* STREAMING_CHUNK:Configuring footer responsive scaling... */
footer { background-color: #07253b; color: white; padding: 60px 0 20px 0; }

.footer-grid {
display: grid;
grid-template-columns: 1fr; /* Mobile: 1 col */
gap: 40px;
}

@media (min-width: 768px) {
.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
.footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* STREAMING_CHUNK:Finalizing mobile menu and overrides... */
@media (max-width: 768px) {
.mobile-menu-toggle { display: block; }
.nav-bar { display: none; width: 100%; background: white; position: absolute; top: 95px; left: 0; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.nav-bar.active { display: block; }
.nav-list { flex-direction: column; align-items: flex-start; gap: 15px; }
}



/* STREAMING_CHUNK:Styling Header... /
.top-bar {
background-color: #0a3d62; / Exact Navy Blue */
color: white;
padding: 8px 0;
font-size: 0.85rem;
}

.bar-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.social-and-lang {
display: flex;
gap: 15px;
align-items: center;
}

.whatsapp-top {
background: #ffc107;
color: #000;
padding: 3px 10px;
border-radius: 4px;
font-weight: bold;
text-decoration: none;
font-size: 0.8rem;
}

.lang-link {
color: white;
text-decoration: none;
font-weight: bold;
}

.nav-contact-btn {
background-color: #0a3d62 !important;
color: white !important;
padding: 10px 20px !important;
border-radius: 5px;
}

@media (max-width: 768px) {
.desktop-only { display: none; }
.bar-content { justify-content: center; flex-direction: column; gap: 5px; }
}




/* STREAMING_CHUNK:Styling Top Bar layout and colors... */
.top-bar {
    background-color: #0a2647; /* Dark Navy Blue */
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.85rem;
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.chat-btn {
    background-color: #f39c12; /* Orange for Chat */
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}

.lang-link {
    background-color: #f39c12; /* Orange for Language */
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}

/* STREAMING_CHUNK:Styling Main Header section... */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.contact-nav-btn {
    background-color: #0a2647;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .bar-content { flex-direction: column; gap: 10px; }
}



/* STREAMING_CHUNK:Top Bar Styles */
.top-bar { background-color: #0a2647; color: #ffffff; padding: 10px 0; font-size: 0.85rem; }
.bar-content { display: flex; justify-content: space-between; align-items: center; }
.contact-info { display: flex; gap: 20px; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.chat-btn, .lang-link { background-color: #f39c12; color: #000; padding: 4px 12px; border-radius: 4px; text-decoration: none; font-weight: bold; font-size: 0.8rem; }

/* STREAMING_CHUNK:Main Header Styles */
.main-header { background: #fff; padding: 15px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: relative; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.nav-list { display: flex; list-style: none; gap: 25px; margin: 0; align-items: center; }
.nav-item { text-decoration: none; color: #333; font-weight: 600; }
.contact-nav-btn { background-color: #0a2647; color: white !important; padding: 10px 20px; border-radius: 5px; }

/* STREAMING_CHUNK:Mobile Hamburger Menu */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after { display: block; background: #333; height: 3px; width: 25px; position: relative; }
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { bottom: 7px; }
.nav-toggle-label span::after { top: 7px; }

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }
    .nav-bar { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; display: none; flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); z-index: 999; }
    .nav-list { flex-direction: column; gap: 20px; align-items: flex-start; }
    .nav-toggle:checked ~ .nav-bar { display: block; }
}