*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar {
    background: #3C0F69 !important;
    border-bottom: 3px solid #ffffff !important;
    padding: 20px !important; 
   
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;  
}
  .navbar-brand {
    color: #ffffff !important;
    font-size: 2rem !important;

    font-weight: bold !important;
    letter-spacing: 1px;
  }
  .navbar-toggler {
    border-color:#ffffff !important;
    font-weight: bold !important;
  }
  .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba%28255%2C 255%2C 255%2C 0.7%29%27 stroke-width%3D%272%27 stroke-linecap%3D%27round%27 stroke-miterlimit%3D%2710%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E');
  }
  
  /* Navbar Links */
  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.2rem;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 30px;
    
  }
  .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    background: #3C0F69 !important;
    color: #ffffff !important;
    border-radius: 5px;
    font-weight: 600;
    
  }
  
  /* Dropdown Menu */
  .dropdown-menu {
    background: #3C0F69 !important;
    border-radius: 0;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  .dropdown-item {
    color: #fff !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
    margin-top: 2rem !important;
    border-bottom: 1.5px #0000;
  }
  .dropdown-item:hover, .dropdown-item:focus {
    background: linear-gradient(135deg, #ffffff, #ffffff) !important;
    color: #B11536 !important;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .navbar-nav {
      background-color: #2a2a2a;
      padding: 10px;
      border-radius: 10px;
    }
    .navbar-nav .nav-item {
      text-align: center;
      margin-bottom: 5px;
    }
    .dropdown-menu {
      width: 100%;
      text-align: center;
    }
    .navbar-brand{
        font-size: 1rem !important;
    }
  }





  #about-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f0931, #4f1181);
    color: #fff;
    text-align: center;
    border-top: 5px solid #ff5722;
    border-bottom: 5px solid #ff5722;
    position: relative;
    overflow: hidden;
}

#about-us:before, #about-us:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(135deg, #0f0931, #4f1181);
    animation: animate-bg 6s linear infinite;
    z-index: 0;
}

@keyframes animate-bg {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.title h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title p {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffd54f;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.description p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.services h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd54f;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.services ul {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    max-width: 900px;
}

.services li {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    list-style-type: none;
    padding-left: 25px;
    position: relative;
}

.services li:before {
    content: '*';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 5px;
    color: #ff5722;
    font-size: 1.5rem;
}

.cta p {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd54f;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta button {
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.cta button:hover {
    background-color: #ffd54f;
    color: #0f0931;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* Responsive Design */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    .title h2 {
        font-size: 2.5rem;
    }

    .description p, .services li {
        font-size: 1rem;
    }

    .services h3 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.2rem;
    }

    .cta button {
        font-size: 1.1rem;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .title h2 {
        font-size: 2rem;
    }

    .description p, .services li {
        font-size: 0.9rem;
    }

    .services h3 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta button {
        font-size: 1rem;
    }
}





















































  

#address {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #302f2f;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #413f3f;
    margin-bottom: 40px;
}

.address-box {
    background: linear-gradient(135deg, #ffffff, #ffffff) !important;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.address-box i {
    font-size: 3rem;
    color: #363636;
    margin-bottom: 15px;
}

.address-box h4 {
    font-size: 1.5rem;
    color: #2b2929;
    margin-bottom: 10px;
}

.address-box p {
    font-size: 1rem;
    color: #2f302d;
}

.address-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .address-box {
        margin-bottom: 30px;
    }
}





#disclaimer {
    background-color:  #3C0F69;
    padding: 20px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

#disclaimer p {
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 18px;
}

@media (max-width: 768px) {
    #disclaimer p {
        font-size: 16px;
    }
}

#footer {
    background: #3C0F69 !important;
    padding: 20px 0;
}

#footer p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
}

#footer a.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

#footer a.footer-link:hover {
    color: #bbff00;
}

@media (max-width: 768px) {
    #footer p {
        font-size: 12px;
    }
    #footer a.footer-link {
        font-size: 12px;
    }
}

#services-dropdown
{
    z-index: 9999 !important;
    background: white !important;
}

