:root {
  --themeprimaryclr: #FF671F;
  --dark-primaryclr: #E55A17;
  --light-primaryclr: #FF8A4C;
  --themesecondaryclr: #06038D;
  --light-secondaryclr: #3A36DB;
  --gray-200: #1A1A1A;
  --gray-100: #333333;
  --lightbg: #F5F5F5;
  --plainclr: #FFFFFF;
  --off-white: #FAFAFA;
}

section {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--gray-200);
  background-color: var(--off-white);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  color: var(--gray-200);
}

/* btn */
.btn-theme-one {
  background-color: var(--themeprimaryclr) !important;
  color: var(--plainclr) !important;
  border: 0px solid var(--plainclr) !important;
  padding: 1rem 1.3rem;
  font-size: 1rem;
}

.btn-theme-one:hover {
  background-color: var(--dark-primaryclr) !important;
  color: var(--plainclr) !important;
  border: 0px solid var(--plainclr) !important;
}

.btn-theme-two {
  background-color: var(--themesecondaryclr) !important;
  border-color: var(--themesecondaryclr) !important;
  color: var(--plainclr) !important;
  display: inline;
  border: 0px solid var(--plainclr) !important;
  padding: 1rem 1.3rem;
  font-size: 1rem;
}

.btn-theme-two:hover {
  background-color: var(--light-secondaryclr) !important;
  color: var(--plainclr) !important;
  border: 0px solid var(--plainclr) !important;
}

.btn-outline-theme {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plainclr);
  background: transparent;
  border: 1px solid var(--plainclr);
  padding: 1rem 1.3rem;
  font-size: 1rem;
}

.btn-outline-theme:hover {
  background: var(--plainclr);
  color: var(--gray-100);
  border: 1px solid var(--plainclr);
}

@media (max-width: 575px) {
  .btn-theme-one, .btn-theme-two, .btn-outline-theme {
    padding: 0.9rem 1.1rem;
  }
}
/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  display: inline-block;
  padding-bottom: 15px;
  position: relative;
  color: var(--themesecondaryclr);
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--themeprimaryclr);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--gray-100);
  max-width: 700px;
  margin: 20px auto 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0;
  }
  .hero-quote {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .site-title h1 {
    font-size: 1.5rem;
  }
  .govt-badge {
    margin-top: 15px;
  }
  .hero-quote {
    font-size: 1.3rem;
    padding: 20px;
  }
  .hero-quote:before {
    font-size: 5rem;
    top: -20px;
  }
  .about-section, .gallery-section, .testimonial-section, .news-section {
    padding: 70px 0;
  }
  .main-footer {
    padding-top: 70px;
  }
}/*# sourceMappingURL=color-font.css.map */