:root {
    --primary-color: #1e8b4d;       /* Main green color */
    --primary-dark: #156835;        /* Darker green for hover states */
    --primary-light: #6abe8a;       /* Lighter green for backgrounds */
    --secondary-color: #2c3e50;     /* Dark blue-gray */
    --accent-color: #f39c12;        /* Orange accent */
    --text-color: #333333;          /* Main text color */
    --text-light: #777777;          /* Lighter text for subtitles */
    --bg-color: #ffffff;            /* Background color */
    --bg-light: #f5f7fa;            /* Light background for sections */
    --border-color: #e1e1e1;        /* Border color */
    --success-color: #27ae60;       /* Success messages */
    --error-color: #e74c3c;         /* Error messages */
    --warning-color: #f39c12;       /* Warning messages */
    --info-color: #3498db;          /* Info messages */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Layout & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #1a2530;
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #e67e22;
}

/* Header Styles */
.header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

.top-bar {
    background-color: #156835 !important; /* Force dark green color */
    color: white;
    padding: 4px 0;
    font-size: 10px;
    line-height: 1.2;
    height: 38px; /* Approximately 1cm */
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.contact-info {
    display: none;
}

.contact-info > div {
    margin-right: 8px; /* Reduced margin */
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
    width: 0.75cm; /* Changed from 1cm to 0.75cm */
    overflow: hidden; /* Hide overflowing text */
    white-space: nowrap; /* Prevent wrapping */
    text-overflow: ellipsis; /* Show ellipsis for overflowing text */
}

.contact-info i {
    margin-right: 2px; /* Reduced margin */
    font-size: 8px; /* Smaller icon */
}

.contact-info a {
    color: white;
    font-size: 8px; /* Smaller text */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 0.6cm; /* Changed from 0.8cm to 0.6cm */
}

.social-icons {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 40px; /* Added margin to create space */
}

.social-icons a {
    color: white;
    margin-left: 8px;
    font-size: 12px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-text {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-text a {
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-text a.bright-text {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.contact-text a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-text i {
    font-size: 10px;
    color: #ffffff;
}

.main-header {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 60px;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 15px;
}

.nav-menu li a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.nav-menu li a:hover, 
.nav-menu li.active a {
    color: var(--primary-color);
}

.nav-menu li.active a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 5px;
}

/* Dropdown Menu */
.nav-menu .dropdown ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    width: 220px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    border-radius: 4px;
    transform: translateY(10px);
}

.nav-menu .dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown ul li {
    margin: 0;
}

.nav-menu .dropdown ul li a {
    padding: 10px 20px;
    font-weight: 400;
    font-size: 14px;
}

.nav-menu .dropdown ul li a:hover {
    background-color: #f5f5f5;
}

/* Search Form */
.search-form {
    position: relative;
    width: 250px;
}

.search-form input {
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.search-form button:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

/* Hero SVG Slider Styles */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* Start from right side */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Center position when active */
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%); /* Move to left when previous */
    opacity: 0;
    visibility: visible;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    max-height: 400px;
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* End Hero SVG Slider Styles */

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 20px;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.category-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-dark);
    font-size: 28px;
}

.category-item h3 {
    margin-bottom: 10px;
}

.category-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Featured Products */
.featured-products {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.product-img img {
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 5px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-brand {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.details-btn {
    background-color: var(--secondary-color);
    color: white;
}

.details-btn:hover {
    background-color: #1a2530;
    color: white;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.brand-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-height: 80px;
    max-width: 100%;
}

.brand-item h3 {
    font-size: 18px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
}

.cta-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-widget ul {
    list-style: none;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Product Details Page */
.product-detail-section {
    padding: 60px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-detail-img {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.product-detail-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info h1 {
    margin-bottom: 10px;
}

.product-brand-detail {
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.product-brand-detail img {
    height: 30px;
    margin-right: 10px;
}

.product-inquiry {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}

.product-inquiry .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-light);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Solutions Page */
.solutions-section {
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.solution-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-img {
    height: 200px;
    overflow: hidden;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: 25px;
}

.solution-content h3 {
    margin-bottom: 15px;
}

.solution-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* About Page */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card, .vision-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card i, .vision-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.value-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
    color: white;
}

.value-item:hover h3 {
    color: white;
}

.value-item i {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item:hover i {
    color: white;
}

/* Team Section */
.team-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-content {
    display: flex;
    gap: 40px;
}

.why-choose-text {
    flex: 1;
}

.why-choose-list {
    flex: 1;
}

.choose-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.choose-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.choose-item-content h4 {
    margin-bottom: 5px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 40px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 25px;
}

.contact-info-list {
    list-style: none;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-list i {
    font-size: 20px;
    color: var(--primary-light);
}

.contact-info-content h4 {
    color: white;
    margin-bottom: 5px;
}

.contact-info-content p, .contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-social {
    margin-top: 30px;
}

.contact-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background-color: white;
    color: var(--primary-color);
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 139, 77, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-content, 
    .about-content, 
    .why-choose-content, 
    .contact-content,
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-detail-img {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .top-bar-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .contact-info {
        margin-bottom: 0;
    }
    
    .social-icons {
        align-self: center;
    }
    
    .contact-text {
        gap: 10px;
    }
    
    .contact-text a {
        font-size: 11px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background-color: white;
        z-index: 1001;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0 0 15px;
    }
    
    .nav-menu .dropdown ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: #f5f5f5;
        width: 100%;
        padding: 0;
        margin-top: 10px;
        display: none;
    }
    
    .nav-menu .dropdown.active ul {
        display: block;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-content, 
    .about-content, 
    .why-choose-content {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .search-form {
        width: 200px;
    }
}

@media screen and (max-width: 576px) {
    .contact-info {
        flex-direction: row;
        align-items: center;
    }
    
    .contact-info > div {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 5px;
        justify-content: center;
    }
    
    .contact-text {
        margin-top: 5px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .main-header {
        flex-wrap: wrap;
    }
    
    .search-form {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .categories-grid,
    .products-grid,
    .brands-grid,
    .solutions-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .product-inquiry {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 20px;
    }
} 