body{
    font-family: 'Poppins', sans-serif !important; 
}
/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav__logo img {
        width: 60px;
    }

    .nav__links {
        display: none; /* Hide links on small screens */
    }

    .menu-icon {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .language-toggle {
        width: 120px;
        height: 40px;
    }

    .language-btn {
        font-size: 14px;
        padding: 8px;
    }
}
@media (min-width: 320px) and (max-width: 600px) {
  header{
    padding-left: 10px;
  }
  nav {
      padding: 0.5rem; /* Reduced padding for smaller screens */
      flex-direction: row; /* Keep items in a row */
      align-items: center; /* Center align items vertically */
      justify-content: space-between; /* Space between logo and links */
  }
  .nav__logo{
    margin-right: auto;
  }
  .nav__logo img {
      width: 50px; /* Smaller logo size for mobile */
  }

  .nav__links {
      display: none; /* Hide links on small screens */
  }

  .menu-icon {
      display: block; /* Show menu icon */
      font-size: 1.8rem; /* Larger icon */
      cursor: pointer;
  }

  .language-toggle {
      width: 130px; /* Adjusted width for mobile */
      height: 40px; /* Adjusted height for better alignment */
  }

  .language-btn {
      font-size: 12px; /* Slightly smaller font size */
      padding: 8px; /* Adjusted padding for buttons */
  }
}



/* Sidebar styles */
.sidebar {
  position: fixed;
  right: -250px; /* Initially hidden on the right */
  top: 0;
  width: 250px;
  height: 100%;
  background-color: rgba(0, 128, 0, 0.6); /* Green with transparency */
  backdrop-filter: blur(10px); /* Applies blur effect */
  padding: 2rem 1rem;
  transition: right 0.3s ease;
  z-index: 10;
}


.sidebar.active {
  right: 0; /* Show sidebar when active */
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 1.5rem;
}

.sidebar a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.close-sidebar {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  margin-bottom: 2rem;
}

.menu-icon {
  display: none; /* Initially hidden */
}

@media (max-width: 768px) {
  .menu-icon {
      display: block; /* Show menu icon for mobile view */
  }
}

/* General Styles */
.container {
    max-width: 1200px; /* Maximum width for the container */
    margin: 0 auto; /* Centers the container */
    padding: 20px; /* Default padding */
}

.form-control {
    border: 1px solid #ccc; /* Light border for input fields */
    border-radius: 4px; /* Rounded input fields */
    padding: 10px; /* Added padding for input fields */
    font-size: 16px; /* Default font size */
    width: 100%; /* Full width for input fields */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for focus styles */
}

.form-control:focus {
    border-color: #2e7d32; /* Green border on focus */
    box-shadow: 0 0 5px rgba(46, 125, 50, 0.5); /* Focus shadow */
}

.btn-primary {
    background-color: #2e7d32; /* Primary button color */
    border: none; /* No border for button */
    color: white; /* White text color */
    padding: 10px 20px; /* Button padding */
    border-radius: 20px; /* Rounded corners */
    font-size: 16px; /* Button font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.btn-primary:hover {
    background-color: #1c5e23; /* Darker green on hover */
}

/* General Container */
.container {
    max-width: 1200px; /* Maximum width for larger screens */
    margin: 0 auto; /* Centering the container */
    padding: 20px; /* Default padding */
}
a.contact {
    color: #fff; /* Specific link color for contact */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth hover transition */
    font-size: 1rem;
}

a.contact:hover {
    color: #ffeb3b !important; /* Darker blue shade on hover */
    text-decoration: underline; /* Underline on hover */
}
/* Responsive Styles */

/* Small Devices (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 10px; /* Reduced padding for extra small screens */
    }

    h1 {
        font-size: 1.5em; /* Smaller heading size */
    }

    h4 {
        font-size: 1.2em; /* Smaller subheading size */
    }

    .form-control {
        font-size: 14px; /* Smaller font size for inputs */
    }

    .btn-primary {
        width: 100%; /* Full width button */
        padding: 12px; /* Increased padding for better touch area */
    }
}

/* Medium Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 15px; /* Reduced padding for medium screens */
    }

    h1 {
        font-size: 1.75em; /* Adjusted heading size */
    }

    h4 {
        font-size: 1.3em; /* Adjusted subheading size */
    }

    .form-control {
        font-size: 15px; /* Slightly smaller font size */
    }

    .btn-primary {
        padding: 10px 18px; /* Adjusted button padding */
    }
}

/* Large Devices (769px and above) */
@media (min-width: 769px) {
    .container {
        padding: 20px; /* Default padding for larger screens */
    }

    h1 {
        font-size: 2em; /* Larger heading size */
    }

    h4 {
        font-size: 1.5em; /* Larger subheading size */
    }

    .form-control {
        font-size: 16px; /* Default font size */
    }

    .btn-primary {
        padding: 10px 20px; /* Default button padding */
    }
}
