/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f9;
  line-height: 1.6;
}

/* Header */
.header {
  background-color: #004466;
  color: white;
  text-align: center;
  padding: 20px;
  animation: fadeIn 2s ease-in;
}

.logo {
  height: 80px;
  margin-bottom: 10px;
}

/* Navigation */
.navbar {
  background-color: #333;
  padding: 10px;
  text-align: center;
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #00cfff;
}

/* Images */
.images {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.images img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  animation: zoomIn 1.5s ease-in-out;
}

/* Table Section */
.table-section {
  padding: 20px;
  text-align: center;
}

table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 80%;
  background-color: #fff;
  border: 1px solid #ccc;
  animation: fadeInUp 1s ease-in-out;
}

th, td {
  padding: 12px;
  border: 1px solid #333;
  text-align: center;
}

/* Services */
.services {
  background-color: #e3f2fd;
  padding: 20px;
  border-radius: 8px;
  margin: 20px;
}

.services ul {
  list-style-type: none;
  padding-left: 0;
}

.services li {
  margin-bottom: 10px;
}

/* Contact */
.contact {
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background-color: #004466;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background-color: #0077aa;
}

.contact-info {
  margin-top: 15px;
}

/* About */
.about {
  padding: 20px;
  background-color: #e9f5f9;
  text-align: center;
}

.about .download {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #098ed1;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.about .download:hover {
  background-color: #066fa1;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact {
  background-color: #fff;
  padding: 30px;
  margin: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-in-out;
}

.contact h2 {
  color: #004466;
  margin-bottom: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #004466;
  outline: none;
}

.contact button {
  background-color: #004466;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background-color: #0077aa;
}

.contact-info {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}
.about {
  background-color: #e9f5f9;
  padding: 30px;
  margin: 30px auto;
  border-radius: 12px;
  max-width: 800px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.about h2 {
  color: #004466;
  margin-bottom: 20px;
  font-size: 28px;
}

.about p {
  font-size: 17px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about .download {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #098ed1;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.about .download:hover {
  background-color: #066fa1;
}
.services {
  background-color: #e3f2fd;
  padding: 30px;
  margin: 30px auto;
  border-radius: 12px;
  max-width: 900px;
  animation: fadeInUp 1s ease-in-out;
}

.services h2 {
  color: #004466;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background: white;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 16px;
}
body {
  font-size: 18px;        
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-size: 28px;        
}

nav a {
  font-size: 18px;       
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.image-grid img:hover {
  transform: scale(1.05);
}
input[type="email"],
input[type="tel"],
input[type="text"],
textarea {
  font-size: 18px;
  padding: 10px;
}
