/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body { 
  font-family: 'Poppins', Arial, sans-serif; 
  background: #f4f7f6; 
  color: #333;
  line-height: 1.6;
}

/* Header */
header { 
  background: linear-gradient(135deg, #2c3e50, #1a252f); 
  color: #fff; 
  padding: 20px 5%; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  max-width: 1200px;
  margin: 0 auto;
}

/* This controls ONLY the Left Logo (img3.png) */
.logo {
  width: 300px;   /* <-- CHANGE THIS NUMBER to make the left logo bigger or smaller */
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* This controls ONLY the Right Logo (img4.png) */
.logo-right {
  width: 200px;   /* <-- Leave this at 150px, or change it separately if you want! */
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;

}

.logo:hover, .logo-right:hover {
  transform: scale(1.05);
}

.header-text {
  text-align: center;
  flex-grow: 1;
  padding: 0 20px;
}

.header-text h1 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #f39c12;
}

/* Navigation */
nav { 
  background: #34495e; 
  padding: 15px; 
  text-align: center; 
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a { 
  color: #ecf0f1; 
  margin: 0 15px; 
  text-decoration: none; 
  font-weight: 600; 
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

nav a:hover { 
  color: #f39c12; 
}

/* General Sections */
section { 
  padding: 40px; 
  background: #fff; 
  margin: 30px auto; 
  width: 90%; 
  max-width: 1200px;
  border-radius: 12px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}

h2 { 
  color: #2c3e50; 
  margin-bottom: 20px;
  border-bottom: 2px solid #f39c12;
  display: inline-block;
  padding-bottom: 5px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  background: #fff;
}

.images { 
  display: flex; 
  justify-content: center; 
  gap: 30px; 
  margin-top: 30px; 
  flex-wrap: wrap;
}

.images img { 
  width: 100%;
  max-width: 400px; 
  border-radius: 12px; 
  box-shadow: 0 8px 15px rgba(0,0,0,0.15); 
  transition: transform 0.3s ease;
}

.images img:hover {
  transform: translateY(-5px);
}

/* Grids for Information Cards */
.grid-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.grid-container .info-card {
  flex: 1;
  min-width: 300px;
  margin: 15px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-container .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

/* Forms Layout */
.forms-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.form-section {
  flex: 1;
  min-width: 350px;
  margin: 15px 0;
}

form { 
  display: flex; 
  flex-direction: column; 
}

form input, form select, form textarea, .search-box input { 
  margin: 10px 0; 
  padding: 15px; 
  border: 1px solid #ddd; 
  border-radius: 8px; 
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}

form input:focus, form select:focus, form textarea:focus {
  border-color: #3498db;
  outline: none;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button, .search-box button { 
  background: #2c3e50; 
  color: #fff; 
  padding: 15px; 
  margin-top: 10px;
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease; 
}

form button:hover, .search-box button:hover { 
  background: #f39c12; 
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex-grow: 1;
  margin: 0;
}
.search-box button {
  margin: 0;
}

/* Search Results UI */
#searchResults {
  margin-top: 20px;
}

#searchResults ul {
  list-style: none;
}

#searchResults li {
  background: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #3498db;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* Contact Section */
.contact-section {
  text-align: center;
}

.contact-details p {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Footer */
footer { 
  background: #1a252f; 
  color: #bdc3c7; 
  text-align: center; 
  padding: 20px; 
  margin-top: 40px; 
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-container {
    flex-direction: column;
    gap: 15px;
  }
  .header-text h1 {
    font-size: 1.8rem;
  }
}