/* Base Styles */
:root {
  /* Colors - Navy blue palette with gold accent */
  --primary-color: #1a365d;
  --primary-dark: #0f2942;
  --primary-light: #2c4b7c;
  --secondary-color: #b8a369;
  --secondary-light: #d4c697;
  --gray-dark: #333333;
  --gray-medium: #666666;
  --gray-light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --heading-font: "Playfair Display", serif;
  --body-font: "Inter", sans-serif;

  /* Dimensions */
  --header-height: 80px;
  --section-spacing: 100px;
  --border-radius: 8px;
  --card-border-radius: 16px;
  --container-max-width: 1200px;

  /* Transitions */
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
}

/* Reset & General Styles */
body {
  font-family: var(--body-font);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--secondary-color);
}

section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 3rem;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.min-vh-80 {
  min-height: 80vh;
}

.rounded-4 {
  border-radius: 1rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-light:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover::before {
  width: 100%;
}

.btn-dark {
  background-color: var(--gray-dark);
  border-color: var(--gray-dark);
}

.btn-dark:hover {
  background-color: var(--black);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  background-color: #1a1a1a;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: #ffffff !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.nav-item.dropdown .nav-link {
  padding-right: 2rem !important;
}

.nav-item.dropdown .nav-link::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.nav-item.dropdown.show .nav-link::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
  background-color: #2a2a2a;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.btn-consultation {
  background: linear-gradient(135deg, var(--secondary-color), #d4c697);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(184, 163, 105, 0.3);
  margin-left: 2rem;
}

.btn-consultation::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-consultation:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 163, 105, 0.4);
}

.btn-consultation:hover::before {
  left: 100%;
}

.btn-consultation i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-consultation:hover i {
  transform: rotate(15deg);
}

@media (max-width: 991.98px) {
  .btn-consultation {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Hero Section */
.hero {
    height: 800px;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--header-height) + 3rem);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-title-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-right: 1rem;
}

.hero-slogan-container {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-slogan-icon {
  font-size: 1.5rem;
  color: var(--secondary-light);
  margin-right: 1rem;
}

/* Mission & Vision Section */
.mission-vision {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8a369' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.mission-card {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  padding: 2.5rem;
  height: 100%;
  transition: all var(--transition-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 54, 93, 0.1);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(184, 163, 105, 0.1));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.mission-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon::before {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mission-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon i {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.mission-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.mission-card:hover h3::after {
  width: 100px;
}

.mission-card p {
  color: var(--gray-medium);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Expertise Section */
.expertise {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.expertise-card {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-medium);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 54, 93, 0.1);
  display: flex;
  flex-direction: column;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(184, 163, 105, 0.1));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.expertise-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon::before {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.expertise-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon i {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
}

.expertise-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.expertise-card:hover h3::after {
  width: 80px;
}

.expertise-card p {
  color: var(--gray-medium);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.expertise-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  justify-content: center;
}

.expertise-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.expertise-link:hover {
  color: var(--secondary-color);
}

.expertise-link:hover i {
  transform: translateX(5px);
}

/* Team Section */
.team {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a365d' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid rgba(26, 54, 93, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.team-position {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(26, 54, 93, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

.team-social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* About Content Section */
.about-content {
  background-color: var(--white);
  position: relative;
  padding: 100px 0;
}

.about-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content .section-title {
  color: var(--primary-color);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}


.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 100%;
  min-height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-text-content {
  padding: 2rem;
}

.about-text-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-text {
  color: var(--gray-medium);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-features {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-medium);
  font-size: 1.1rem;
}

.about-features i {
  color: var(--secondary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .about-image {
    margin-bottom: 2rem;
    min-height: 400px;
  }
}

/* Location Section */
.location {
  background-color: var(--white);
}

.location-map {
  height: 400px;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(26, 54, 93, 0.1);
}

.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.location-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.location-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.location-item i {
  width: 24px;
  margin-right: 1rem;
  margin-top: 0.25rem;
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.location-item p {
  margin-bottom: 0;
  color: var(--gray-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

.location-hours {
  margin-top: 2rem;
}

.location-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--gray-medium);
  font-size: 1rem;
}

.hours-day {
  font-weight: 500;
}

/* Contact CTA */
.contact-cta {
  background-color: var(--primary-color);
}

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-item i {
  width: 24px;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--secondary-color);
}

.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.15);
}

/* Footer */
.footer {
  background-color: var(--gray-dark);
  color: var(--gray-light);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo-text {
  color: var(--white);
}

.footer-heading {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ced4da;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-contact li {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact i {
  width: 24px;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--secondary-color);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: var(--gray-light);
}

.footer-bottom a:hover {
  color: var(--secondary-color);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .navbar-collapse {
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .mission-card, .expertise-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .location-info {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.navbar-toggler {
  background-color: var(--secondary-color);
}