/* ===========================
   Global Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}


/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}



body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}



.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--btn-border-color);
  color: var(--btn-text-color);
}


.btn-primary:hover {

  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 146, 184, 0.3);
 /* background-color: #c86300;
  border-color: #c86300;*/
}


.image-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 146, 184, 0.3);
 
}


/* ===========================
   Max Width Container
   =========================== */
@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1440px;
    margin: 0 auto;
  }
}

/* ===========================
   Navigation
   =========================== */
.navbar-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  /*border-bottom: 1px solid var(--border-color);*/  
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 24px;
  width: auto;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 16px;
  padding: 0.75rem 1.25rem !important;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #f9fafb;
}

.nav-link.active {
  color: var(--primary-color) !important;
}


/* ===========================
   Hero Section
   =========================== */
.hero-section {
  background-color:var(--bg-light);
  padding: 6rem 0;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 4rem 0;
  }
}

.hero-content {
  padding: 2rem 0;
}



/* ===========================
   Footer
   =========================== */
.footer-section {
  background-color: var(--bg-light);
  padding: 4rem 2rem 2rem;
}

.footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 400px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.footer-legal-link {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary-color);
}