
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

::selection{
    background-color: #002366;
    color:#fff;
}
:root {
    /* Color Variables */
    --primary-color: #002366;
    --secondary-color: #CE1212;
    --background-color:#fff;
    --text-light: #f5f5f5;
    --text-dark: #444;
}
.pc{
  color: #002366;
}
.sc{
  color: #CE1212;
}
.bc{
  color: #fff;
}
.tl{
  color: #f5f5f5;
}
.td{
  color: #666;
}
/* BTN */
.btn-main{
    background-color: #002366;
    color: #fff;
    transition: background-color 1s ease;
}
.btn-main:hover{
    background-color: #CE1212;
}
/* Topbar*/
.topbar{
    background-color: var(--primary-color);
}
.topbar a,.topbar i{
    color: var(--background-color);
    text-decoration: none;
    padding: 10px 0;
}

/* navbar */
.navbar-nav .nav-link {
    margin-right: 20px; /* Adds gap between nav items */
    font-size: 1.2rem; /* Increases font size */
}

.navbar-nav .dropdown-menu {
    font-size: 1.1rem; /* Increases dropdown font size */
}
.navbar-brand{
    margin-left: 20px;
    font-size: 1.5rem;
}

.nav-item a{
    position: relative;
}
.nav-item a::before{
    content: '';
    background-color: #CE1212;
    height: 3px;
    width: 0;
    transition: all 0.5s ease;
    position: absolute;
    bottom: 3px;
}
.nav-item a:hover::before{
    width: 80%;
}


/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
}







/* Footer */
.footer {
    color: #ffffff;
    background-color: #1f1f24;
    font-size: 14px;
    padding: 40px 0;
    position: relative;
  }
  
  .footer .icon {
    color: #ce1212;
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .footer .address p {
    margin-bottom: 0px;
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #fff, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, #fff, transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: #ce1212;
    border-color: #ce1212;
  }
  
  .footer .copyright {
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, #Fff, transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }