/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Sticky Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003366; /* Deep Blue */
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700; /* Gold */
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffd700;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Responsive Menu Toggle (CSS only) */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: #ffd700;
  cursor: pointer;
}

/* Divider color block */

.divider {
  height 1px;
  width:100%;
  background-color: #003366; /* Deep Blue */
  color: #ffd700;
  text-align: center;
  padding: 2rem 1rem;
}
  

/* Hero Section */
.hero {
  background: linear-gradient(to right, #003366, #00509e);

  color: #ffd700;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #ffd700;
  color: #003366;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e6c200;
}

/* Content Section */
.content {
  padding: 3rem 2rem;
  text-align: center;
}

.content h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.content p {
  color: #333;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #ffffff;
  border: 2px solid #ffd700; /* Gold border */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  padding: 1rem;
  color: #003366;
}

/* Content Section */
.content {
  padding: 3rem 2rem;
  text-align: center;
}

.content h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.content p {
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}


  /* Services Section */
.services-section {
  padding: 3rem 2rem;
  text-align: center;
}

.services-section h1 {
  color: #003366;
  margin-bottom: 1rem;
}

.services-section p {
  color: #333;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #ffffff;
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #003366;
}


  <!-- Footer -->
  <footer class="footer">
    <div class="footer-container">

      <div class="footer-left">
        <p>&copy; 2025 MySite. All rights reserved.</p>
      </div>

      <div class="footer-center">
        <ul class="footer-links">
          <li><a href="#">Privacy Policy</a></li>
          <li><a href="#">Terms of Service</a></li>
          <li><a href="#">Support</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </div>

      <div class="footer-right">
        <h4>Visit Us</h4>
        <p>123 Blue Street<br>Sunset Hills, NC</p>
      </div>

    </div>
  </footer>

</body>
</html>
/* Footer */
.footer {
  background-color: #003366; /* Deep Blue */
  color: #ffd700; /* Gold */
  padding: 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 200px;
}

.footer-center {
  flex: 1 1 200px;
  text-align: center;
}

.footer-right {
  flex: 1 1 250px;
  text-align: right;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  text-decoration: none;
  color: #ffd700;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-right h4 {
  margin-bottom: 0.5rem;
  color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 1rem;
  }
}

/*contact page css */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003366;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffd700;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Mobile Menu Toggle */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: #ffd700;
  cursor: pointer;
}

/* Contact Section */
.contact-section {
  padding: 3rem 2rem;
  text-align: center;
}

.contact-section h1 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-section p {
  color: #333;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card,
.map-card {
  background: #ffffff;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card h2,
.map-card h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-card p {
  margin-bottom: 1rem;
  color: #003366;
}

/* Footer */
.footer {
  background-color: #003366;
  color: #ffd700;
  padding: 2rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  text-decoration: none;
  color: #ffd700;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .footer-container {
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
