/* Base Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background-image:url('/pics/background.png');
    background-size: cover;
    background-position: center;
}

.logo-container h1 {
    color: #333333; /* Dark gray - adjust as needed */
    text-shadow: 1px 1px 3px rgba(255,255,255,0.7); /* White outline */
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Navigation Styles */
nav {
    background-color: #34495e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #2c3e50;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
}

.consent-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.submit-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1a2533;
}

#form-status {
    margin-top: 20px;
    padding: 10px;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.company-info .info-item {
    margin-bottom: 20px;
}

.company-info strong {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.map {
    margin-top: 30px;
}

.map h3 {
    margin-bottom: 15px;
    color: #bb61a9;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Add this to your style.css file */

/* Language Switcher */
/* Add this to your style.css file */

/* Language Switcher - positioning adjusted for your specific layout */
.language-switcher {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border-radius: 20px;
}

.flag-button {
  background: none;
  border: none;
  font-size: 24px;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.flag-button.active {
  opacity: 1;
  border: 2px solid #333;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Make sure the header has position relative */
header {
  position: relative;
}

/* For mobile devices */
@media (max-width: 768px) {
  .language-switcher {
    top: 5px;
    right: 10px;
    padding: 3px;
  }
  
  .flag-button {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
}