:root {
  --primary-color: #005a9c;
  --secondary-color: #343a40;
  --accent-color: #ffc107;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-secondary);
  color: var(--dark-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-bg {
  background-color: var(--light-color);
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  text-transform: capitalize;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

.section-title p {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn {
  font-size: 0.875rem;
  font-family: var(--font-primary);
  padding: 14px 35px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.btn-premium {
  background: linear-gradient(145deg, #0062a8, #00508c);
  color: var(--white-color);
  /* font-weight: 600; */
  transition: all 0.3s ease-in-out;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 90, 156, 0.2),
    inset 0 -2px 5px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-premium:hover {
  color: var(--white-color);
  box-shadow: 0 8px 20px rgba(0, 90, 156, 0.3),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium-outline {
  background-color: transparent;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-premium-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white-color);
  color: var(--white-color);
}

.btn-secondary-premium {
  background-color: var(--white-color);
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary-premium:hover {
  background-color: transparent;
  border-color: var(--white-color);
  color: var(--white-color);
  box-shadow: none;
}

/* Shape Dividers */
.shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: var(--light-color);
}

.shape-divider-top {
  top: -1px;
  bottom: auto;
  transform: rotate(0deg);
}

.shape-divider-top .shape-fill {
  fill: var(--white-color);
}

/* Navbar */
nav div a img {
  width: 45px;
  height: 40px;
  margin-right: 10px;
  border-radius: 10px;
}
.navbar {
  transition: all 0.4s ease;
  padding: 1.2rem 0;
}

.navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  padding: 0.8rem 0;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.8rem;
}

.navbar-brand .fa-shield-halved {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  color: var(--dark-color);
  margin: 0 12px;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

.dropdown-item {
  font-size: 0.875rem;
}

.dropdown-toggle::after {
  border: none;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--dark-color);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
    color: var(--dark-color) !important;
    padding: 0.75rem 0;
  }
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  background: transparent;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar.scrolled .navbar-toggler span {
  background: var(--dark-color);
}

.navbar-toggler span:nth-child(1) {
  top: 0px;
}

.navbar-toggler span:nth-child(2),
.navbar-toggler span:nth-child(3) {
  top: 9px;
}

.navbar-toggler span:nth-child(4) {
  top: 18px;
}

.navbar-toggler.open span:nth-child(1),
.navbar-toggler.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.navbar-toggler.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navbar-toggler.open span:nth-child(3) {
  transform: rotate(-45deg);
}
/* Lyrics */
.section-padding {
    padding: 40px 0;
    margin: 40px;
}
.divlyrics {
    display: flex;
    padding: 25px;
    margin: 30px 0;
    align-items: center;
}


/* CTA Section */
#cta {
  background: linear-gradient(rgba(0, 90, 156, 0.9), rgba(52, 58, 64, 0.9)),
    url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?q=80&w=1974&auto=format&fit=crop')
      center center/cover no-repeat fixed;
  color: var(--white-color);
  text-align: center;
}

#cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

#cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


/* Footer */
footer div h5 img {
  width: 45px;
  height: 40px;
  margin-right: 10px;
  border-radius: 10px;
}
footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

footer h5 {
  color: var(--white-color);
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white-color);
}

footer .list-unstyled li {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: 1.2rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 60px;
}

/* Scroll to top button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}