/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding-top: 80px; /* Space for sticky nav */
}

/* Floating Navbar */
.floating-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(44, 72, 112, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.brand a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}

.toggle-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: #2c4870;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.hero-text {
  max-width: 500px;
  margin: 0 2rem 2rem;
}

.hero-img img {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* Services */
.services {
  padding: 2rem;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}

.card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.card h3 {
  margin: 0.5rem 0;
}

.card a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

/* Contact */
.contact-section {
  background: #fff;
  padding: 2rem;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  gap: 2rem;
}

.contact-box .info {
  flex: 1;
}

.contact-box form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-box input, .contact-box textarea {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-box button {
  background: #00aaff;
  color: white;
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #2c4870;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Credit/Ad Banner */
.credit-banner {
  text-align: center;
  background-color: #f8f9fa;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.credit-banner a {
  color: #007BFF;
  text-decoration: none;
}

.credit-banner a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    background-color: rgba(44, 72, 112, 0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .navbar-links.active {
    display: flex;
  }

  .toggle-button {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin: 0 0 2rem;
  }
}
/* Footer */
.site-footer {
  background-color: #2c4870; /* Same as header */
  color: white;
  padding: 3rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column p {
  margin: 0.5rem 0;
}

/* Subscribe form */
.subscribe-form {
  display: flex;
  margin-top: 1rem;
}

.subscribe-form input {
  padding: 0.5rem;
  border: none;
  border-radius: 4px 0 0 4px;
  flex: 1;
}

.subscribe-form button {
  padding: 0.5rem 1rem;
  background-color: #ff914d;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #ff7722;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  border-top: 1px solid #3a5880;
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

.scroll-top {
  background: #ff914d;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.scroll-top:hover {
  background: #ff7722;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    text-align: center;
  }
}
.buy-button {
  display: inline-block;
  background: #ff914d;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.buy-button:hover {
  background: #ff7722;
}
.service-container {
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 1.5rem;
  flex-wrap: wrap;
}

.service-container img {
  flex: 1 1 300px;
  border-radius: 8px;
  max-width: 100%;
}

.service-info {
  flex: 2 1 300px;
}

.service-info h1 {
  color: #2c4870;
  margin-bottom: 1rem;
}

.service-info p {
  line-height: 1.6;
}

.service-price {
  font-size: 1.4rem;
  color: #ff914d;
  font-weight: bold;
  margin-top: 1rem;
}

.buy-button {
  display: inline-block;
  margin-top: 1rem;
  background: #ff914d;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.buy-button:hover {
  background: #ff7722;
}

@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

