    
/* Header Styles */
.header-top-bar {
  background-color: #f8f9fa;
  padding: 10px 0;
  font-size: 14px;
}

.header-top-bar .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.header-top-bar .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
}

.header-top-bar .col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .header-top-bar .col-lg-6 {
      flex: 0 0 50%;
      max-width: 50%;
  }
}

.top-bar-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.top-bar-info.list-inline-item {
  display: inline-block;
}

.top-bar-info .list-inline-item {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.top-bar-info a {
  color: #020910;
  text-shadow: #a41e06;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
}

.top-bar-info a:hover {
  color: #a41e06;
}

.top-bar-info i {
  margin-right: 0.5rem;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lg-right {
  text-align: right;
}

@media (min-width: 992px) {
  .text-lg-right {
      text-align: right !important;
  }
}

.top-right-bar a {
  color: #040c14;
  text-decoration: none;
  font-weight: 600;
}

.top-right-bar .h4 {
  color: #0d6efd;
  font-size: 1.5rem;
}

/* Navigation Styles */
.custom-navbar {
  background-color: #810505 !important;
  padding: 10px 0;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  width: 100%;
  justify-content: center;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}

.custom-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 15px;
}

.custom-navbar .nav-link:hover {
  color: #f4d405da !important;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
}

.btn-primary {
  color: #fff;
  background-color: #a41e06;
  border-color: #a41e06;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
}

.btn-primary:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-success {
  color: #fff;
  background-color: #a41e06;
  border-color: #a41e06;
}

.btn-success:hover {
  background-color: #c72407;
  border-color: #c72407;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.d-none {
  display: none !important;
}

.text-center {
  text-align: center !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-navbar .nav-link {
      margin: 0 10px;
  }
  
  .navbar-nav {
      flex-direction: column;
      justify-content: center;
      flex-wrap: wrap;
      text-align: center;
  }
  
  .ms-auto.me-3 {
      margin: 10px auto !important;
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 768px) {
  .header-top-bar {
      font-size: 12px;
  }
  
  .top-bar-info {
      flex-direction: column;
  }
  
  .top-bar-info li {
      margin-right: 0;
      margin-bottom: 5px;
  }
  
  .top-bar-info .list-inline-item {
      display: flex;
      flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .header-top-bar {
      padding: 5px 0;
  }
  
  .top-bar-info a {
      font-size: 12px;
  }
  
  .top-right-bar a {
      font-size: 14px;
  }
  
  .top-right-bar .h4 {
      font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .custom-navbar .nav-link {
      margin: 0 5px;
      font-size: 14px;
      padding: 0.5rem;
  }
  
  .btn-primary {
      padding: 0.375rem 0.75rem;
      font-size: 14px;
  }
}



/* Footer Styles */
.footer-section {
position: relative;
min-height: 200px;
font-size: 15px;
color: white;
background-color: #a10000;
}

.footer-section .container {
padding: 20px 0;
}

.footer-widget {
margin-bottom: 20px;
}

.footer-logo img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
}

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

.footer-links a {
color: white !important;
display: block;
padding: 6px 0;
text-decoration: none !important;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: #FFD700 !important;
transform: translateX(5px);
}

.social-icons {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 15px;
}

.social-icon {
width: 36px;
height: 36px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 16px;
color: white;
transition: all 0.3s ease;
}

.facebook-icon { background-color: #3b5998; }
.youtube-icon { background-color: #ff0000; }
.instagram-icon {
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.tiktok-icon { background-color: #000000; }

.social-icon:hover {
transform: scale(1.1);
opacity: 0.9;
}

.subscribe-form {
max-width: 300px;
margin: 0 auto;
}

.subscribe-input {
border-radius: 5px;
padding: 0.6rem 1rem;
border: 2px solid white;
background: white;
color: rgb(17, 1, 1);
width: 100%;
outline: none;
margin-bottom: 10px;
}

.subscribe-input::placeholder {
color: rgba(14, 4, 4, 0.986);
}

.subscribe-btn {
background-color: #e71313;
color: rgb(255, 255, 255);
border-radius: 5px;
padding: 0.6rem 1.2rem;
font-weight: 500;
border: none;
transition: background-color 0.3s ease, transform 0.3s ease;
width: 150px;
margin: 0 auto;
display: block;
}

.subscribe-btn:hover {
background-color: #f75b40;
transform: translateY(-2px);
}

.footer-bottom {
background-color: #810505;
padding: 10px 0;
text-align: center;
}

/* Social Float Buttons */
.social-float-buttons {
position: fixed;
top: 35%;
right: 10px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 999;
}

.social-btn {
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
overflow: hidden;
transition: transform 0.3s ease;
}

.social-btn img {
width: 25px;
height: 25px;
object-fit: contain;
}

.social-btn:hover {
transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
.footer-widget {
  text-align: center !important;
}

.footer-links {
  display: inline-block;
  text-align: left;
}

.social-icons {
  justify-content: center;
}
}

@media (max-width: 576px) {
.social-float-buttons {
  display: none;
}

.subscribe-btn {
  width: 100%;
}
}

@media (max-width: 375px) {
.subscribe-form {
  width: 100%;
}
}
