/* General Styles */
:root {
  --primary-dark: #0f3460; /* Deep Blue */
  --accent-color: #fca311; /* Orange/Gold */
  --accent-light: #fff3cd; /* Light Orange for backgrounds */
  --text-muted: #6c757d;
}

body {
  font-family: "Outfit", sans-serif;
  color: #333;
}

/* Custom Colors */
.text-primary-dark {
  color: var(--primary-dark) !important;
}

.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}

.text-warning {
  color: var(--accent-color) !important;
}

.bg-warning-light {
  background-color: var(--accent-light) !important;
}

.btn-warning {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  max-width: 100%;
  width: fit-content;
}

.btn-warning:hover {
  background-color: #e0900e;
  border-color: #e0900e;
  color: #fff;
}

.btn-primary-dark {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-primary-dark:hover {
  background-color: #0a2544;
  border-color: #0a2544;
  color: #fff;
}

/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  color: #333;
  margin-left: 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background-size: cover;
  background-position: center;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

/* Section Titles */
.section-title {
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* Cards */
.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
.carousel-caption{
  display: flex!important;
  bottom:1.25rem;
  top:1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel-item{
  height:90vh;
  overflow: hidden;
}
.carousel{
  width:100%;
}
.google-maps {
        position: relative;
        padding-bottom: 45%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
    }
    .google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }