
.hero-section {
    background: linear-gradient(41deg, rgba(0, 0, 0, 0.499), rgba(0, 0, 0, 0.428)), url('/img/3.jpg') center/cover no-repeat;
    color: white;
    position: relative;
    height: 40vh;
}

.hero-section h1 {
    font-size: 2rem;
    /* font-weight: bold; */
    position: absolute;
    bottom: 10px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 5px;
}
p{
 font-size: 1rem;
}
.breadcrumb {
    background-color: #273e47;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 5px;
}

.breadcrumb a {
    text-decoration: none;
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
           float: left;
           padding-right: var(--bs-breadcrumb-item-padding-x);
           color: rgb(178 178 178);
           content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb a:hover {
    text-decoration: none;
    color: #a4243b;
}

.sidebar {
    border-right: 2px solid #ddd;
    padding-right: 15px;
    margin-bottom: 20px;
}

.sidebar-menu {
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    animation: slideIn 1.5s ease-in-out;
}

.sidebar-menu h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu ul li {
    margin-bottom: 0.8rem;
}

.sidebar-menu ul li a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.sidebar-menu ul li a:hover {
    background: #b30000;
    color: white;
    transform: scale(1.05);
}

.content h2 {
    border-bottom: 2px solid #b30000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #b30000;
}
  .bread-crumb{
    background-color: #273e47;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .sidebar {
        border: none;
        padding: 0;
    }

    .sidebar-menu ul li a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .hero-section {
        padding: 30px 10px;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

  .image-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.image-slider img {
    width: 48%;
    height: auto;
    border-radius: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.slider-controls button {
    border: none;
    background-color: #273e47;
    color: white;
    padding: 8px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: #b30000;
}




.content {
    background: white;
    /* padding: 20px; */
    margin-bottom: 20px;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

 

  .section-title {
    background: #eed6da;
    color: rgb(0, 0, 0);
    padding: 10px;
    /* border-radius: 5px; */
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  ul {
    list-style: disc;
    margin-left: 20px;
  }


  .contact-section {
    background: #ffffff;
    color: rgb(0, 0, 0);
    /* padding: 20px; */
    /* border-radius: 8px; */
    margin-top: 30px;
  }

  .contact-section h3 {
    color: #f7e7e7;
  }

  .contact-section p {
    margin: 5px 0;
  }
.btn{
    background-color:#273e47;
    color: #ffffff;
}
.btn:hover{
    background-color: #b30000;
    color:#ffffff
}