

:root {
  --primary-color: #ec1212;
  --text-color: #333;
  --light-bg: #f9f9f9;
}

 
    /* HEADER */
    header {
      position: sticky;
      top: 0;
      background: white;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand img {
      width: 60px;
      margin-right: 10px;
    }

    .navbar-brand span {
      font-weight: bold;
      color: red;
      letter-spacing: 1px;
    }

    .nav-link {
      color: var(--text-color);
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: red;
    }

    .navbar-nav li {
      color: red;
    }

    /* Remove side spacing for small screens */
    @media (max-width: 768px) {
      .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

   
    /* Responsive Adjustments */
    @media (max-width: 540px) {
      .navbar-brand img {
        width: 40px;
        margin-right: 5px;
      }

      .navbar-brand span {
        font-weight: bold;
        letter-spacing: 0;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 430px) {
      .navbar-brand img {
        width: 50px;
        margin-right: 0;
      }

      .navbar-brand span {
        font-weight: bold;
        font-size: 0.85rem;
      }
    }

    @media (min-width: 541px) and (max-width: 767px) {
      .navbar-brand img {
        width: 40px;
        margin-right: 5px;
      }

      .navbar-brand span {
        font-weight: bold;
        font-size: 0.9rem;
      }

    }

    @media (max-width: 347px) {
      .navbar-brand img {
        width: 30px;
        margin-right: 5px;
      }

      .navbar-brand span {
        font-weight: bold;
        font-size: 0.6rem;
      }
    }
/* FOOTER  */
footer {
  background: #fff5f5;
  color: #000;
  padding: 50px 20px;
}

footer h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

footer a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #444;
}

footer .footer-brand img {
  width: 30%;
}

@media (max-width: 540px) {
  
  footer {
    padding: 30px 10px;
  }
  footer .footer-brand img {
    width: 50%;
  }
}

@media (min-width: 541px) and (max-width: 767px) {
 
  footer {
    padding: 40px 15px;
  }
}

    #navbar-desktop { display: block; }
    #navbar-mobile { display: none; }

    @media (max-width: 991px) {
      #navbar-desktop { display: none !important; }
      #navbar-mobile { display: block !important; }
    }

    @media(max-width:1400px) and (min-width:992px) {
      .custom-navbar {
        transition: all 0.3s ease;
      }

      .navbar-brand img {
        height: 40px;
      }

      .navbar .dropdown-menu {
        padding: 15px 20px;
        border-radius: 10px;
        min-width: 300px;
        margin-top:0px;
        width:50%;
      }

      .dropdown-menu-center {
        left: 70% !important;
        transform: translateX(-50%) !important;
        margin-top:0px;
      }

      .show > .dropdown-menu {
        margin-top: 0rem !important;
      }

      .dropdown-item {
        font-size: 15px;
        line-height: 1.3;
        white-space: normal;
        padding: 10px 15px;
        margin-top:0px;
      }
    }  

     
.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  color: red;
}

.dropdown-menu {
  font-size: 10px;
  white-space: normal; 
}