/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: serif;
  background-color: #fffdd0;
  color: #1b2c3d;
  font-weight: bolder;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px 100px;
  background: #fff;
}
.hero-logo {
  width: 600px;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #002b45;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 1rem;
  color: #4a5a66;
  line-height: 1.8;
  letter-spacing: 2px;
}

/* About Section */
.about {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f5f7fa;
}
.about-card {
  background: #fff;
  padding: 40px 50px;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.about-card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #004b70;
}
.about-card p {
  color: #555;
  margin-bottom: 15px;
}

/* Floating Contact Button */
.contact-btn {
  position: fixed;
  top: 30px;
  right: 40px;
  background-color:#e8792f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.contact-btn:hover {
  background-color: #e8792f;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.4rem;
  }
  .about-card {
    padding: 30px 20px;
  }
  .contact-btn {
    top: 20px;
    right: 20px;
    padding: 10px 18px;
  }
.my-footer {
  text-align: center;
}
}

.centered-address{text-align:center;}

img{max-width:100%;height:auto;}
