/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.section-heading {
  color: #1d3e68; /* Ocean Blue */
  font-weight: 600;
  margin-bottom: 1rem;
}

.secondary-element {
  color: #2b6a66;
  font-weight: 500;
  opacity: 0.85;
}

/* Section Headings */
h2 {
  font-weight: 600;
  color: #343a40;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
}
.custom-navbar {
  background-color: #1b2c39 !important;
}

.nav-link {
  font-weight: 500;
  color: #ffffff !important;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* Hero Section (if applicable) */
.hero-section {
  background: linear-gradient(to right, #0d6efd, #6610f2);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

/* Card Styles */
.card {
  border-radius: 10px;
}

.card-title {
  font-weight: bold;
  color: #343a40;
}

.card-text {
  color: #555;
}

/* Contact Form */
form input, form textarea {
  border-radius: 8px;
}

form button {
  background-color: #0d6efd;
  border: none;
  font-weight: bold;
}

form button:hover {
  background-color: #0b5ed7;
}

/* Footer Base Styles */
.footer-heading-change-color {
  color: #62acc4;
}
.footer {
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  background-color: #1b2c39;
  color: white;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.footer-icon {
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: color 0.3s ease;
  display: inline-block;
}

/* Social Media Brand Colors */
.facebook-icon {
  color: #3b5998;
}

.instagram-icon {
  color: #E1306C;
}

.linkedin-icon {
  color: #0077b5;
}

/* Optional Hover Effects with Brand Tint */
.facebook-icon:hover {
  color: #2d4373;
}

.instagram-icon:hover {
  color: #c13584;
}

.linkedin-icon:hover {
  color: #005983;
}

.footer-separator {
  border: 0;
  border-top: 1px solid #555;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer .container > .row.justify-content-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 576px) {
  .navbar-brand {
    text-align: center;
    width: 100%;
  }

  .navbar-brand span {
    font-size: 0.95rem;
  }

  .navbar-toggler {
    margin-top: 0.3rem;
  }
}

