/* ----------------------------------

Template Name: Agrul - Organic Farm Agriculture Template
Author: validtheme
Description:
Version: 1.0

Main Font    : Manrope
Main Color   : #6222cc

-------------------------------------

[Typography]

Body copy:    15px 'Manrope', sans-serif
Header:     36px 'Manrope', sans-serif
Input, textarea:  16px 'Manrope', sans-serif
Sidebar heading:  20px 'Manrope', sans-serif

>>> TABLE OF CONTENTS:
=======================
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
    02. Preloader
    03. Topbar
	    - Topbar Regular
        - Topbar With Menu
    04 Navbar
        - Navbar Default
        - Navbar Right Menu
        - Navbar Sticky
        - Navbar Center
    05. Banner
        - Banner Style One
        - Banner Style Two
    06. About Us
	    - About Style One
        - About Style Two
    07. Services
        - What We Do (Slider)
        - Services With Image & Icon
        - Services Single
    09. Product
		- Product Light Version
        - Product Dark Version
    10. Why Choose Us
    11. Fun Factor
    12. Testimonials
    13. Farmers
        - Farmer Grid
        - Farmer Details
    14. Projects
        - Project Slider
        - Prject Grid
        - Prject Details
    15. Order Process
    16. Clients / Brand
    17. Blog
        - Standard
        - Blog Grid
        - Left Sidebar
        - Right Sidebar
        - Single
    18. Error 404
    19. Footer
    20. PHP Contact Form
    21. Others

*/

/*
** General Styles for HTML tags
*/

/* Top Header Styles */
.top-header {
    background: #4BA761;
    color: #ffffff;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.top-header .top-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
    flex: 1;
}

.top-header .tagline {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
}

.top-header .contact-info i {
    color: #ffffff;
    font-size: 12px;
}

.top-header .top-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-shrink: 0;
}

.top-header .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-header .social-icons a {
    color: #ffffff;
    font-size: 14px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.top-header .social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher .dropdown-toggle:hover,
.language-switcher .dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.language-switcher .dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    min-width: 160px;
    padding: 8px;
    position: absolute;
    right: 0;
    left: auto;
    z-index: 1000;
}

.language-switcher .dropdown-item {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 2px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.language-switcher .dropdown-item:hover {
    background: #f8f9fa;
    color: #000;
}

.language-switcher .dropdown-item.active {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
}

/* RTL Support */
[dir="rtl"] .top-header .top-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .top-header .top-info {
    flex-direction: row-reverse;
}

[dir="rtl"] .top-header .top-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .top-header .social-icons {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher .dropdown-menu {
    text-align: right;
    right: auto;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .top-header .top-info {
        gap: 20px;
    }
    
    .top-header .top-right {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .top-header .top-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-header .top-info {
        gap: 20px;
        justify-content: center;
        width: 100%;
    }
    
    .top-header .top-right {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 12px 0;
    }
    
    .top-header .top-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-header .tagline {
        font-size: 13px;
    }
    
    .top-header .contact-info {
        font-size: 12px;
    }
    
    .top-header .top-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-header .social-icons {
        gap: 12px;
    }
    
    .top-header .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 12px;
        padding: 6px;
    }
    
    .language-switcher .dropdown-toggle {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 10px 0;
    }
    
    .top-header .top-content {
        gap: 12px;
    }
    
    .top-header .top-info {
        gap: 8px;
    }
    
    .top-header .tagline {
        font-size: 12px;
    }
    
    .top-header .contact-info {
        font-size: 11px;
    }
    
    .top-header .social-icons {
        gap: 10px;
    }
    
    .top-header .social-icons a {
        width: 24px;
        height: 24px;
        font-size: 11px;
        padding: 5px;
    }
    
    .language-switcher .dropdown-toggle {
        font-size: 11px;
        padding: 5px 10px;
    }
}
