* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

header {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background: url('/images/Logo.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
}

.company-logo {
    width: 50px;
    height: 50px;
}

.company-name {
    font-size: 1.5rem;
    color: #1565c0;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2e7d32;
}

section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

#home {
    background: linear-gradient(to right, #2e7d32, #1565c0);
    color: white;
    text-align: center;
}

#home h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#about {
    background: white;
}

#about h2, #exports h2, #imports h2, #contact h2 {
    color: #2e7d32;
    margin-bottom: 2rem;
    text-align: center;
}

#about p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.glide-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.glide {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
}

.glide-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.glide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1rem;
}

.card-content h3 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.more-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  max-width: 600px;
  width: 90%;
  margin: 5vh auto;
  border-radius: 10px;
  position: relative;
  padding: 2.5rem 1.5rem 2rem 1.5rem; /* Top padding increased from 2rem to 2.5rem */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.close-btn {
  position: absolute;
  top: 1rem;   /* Lower value to move button closer to the real top edge */
  right: 2rem;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10;
}

.modal-content h3#modalTitle {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #2e7d32;
}

.modal-content img#modalImage {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 2.5rem auto 1rem auto;  /* Add margin-top matching .modal-content's top padding */
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}

.modal-content p#modalDescription {
  margin: 0;
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
}


#contact form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact input, #contact textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#contact button {
    background: #1565c0;
    color: white;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
}

#contact button:hover {
    background: #2e7d32;
}

#form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

#form-message.success {
    background: #2e7d32;
    color: white;
}

#form-message.error {
    background: #d32f2f;
    color: white;
}

footer {
    background: #1565c0;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-address p {
    margin-bottom: 0.5rem;
}

.social-media a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.social-media a:hover {
    color: #2e7d32;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.autocomplete-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}
#country-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}
.autocomplete-list li {
    padding: 0.75rem;
    cursor: pointer;
}
.autocomplete-list li:hover {
    background: #f0f0f0;
}

.phone-wrapper { border: 1px solid #ccc; border-radius: 4px; padding-left: 8px; }
.phone-isd { min-width: 60px; font-weight: bold; color: #555; }

.country-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  font-weight: bold;
  font-size: 18px;
  display: none;
}
.country-wrapper { position: relative; }


