.bagnavbar {
    background-color: #010358;
    color: #fff;
    position: fixed;
    top: 0px;
    z-index: 1;
    width: 100%;
}
.logo{
    width: 50px;
    height: 50px;
    /* position: absolute; */
    right: 100px;
}

.navbar-nav{
    color: white;
}
.navbar-nav .link {
    color: white !important;
}
.navbar-nav .link:hover {
    color: #9ecbff !important;
}
.bags {
    color: rgb(3, 3, 248);
    background-color: black;
    border-radius: 2px solid red;
    box-shadow: 2px slid red;
}

.bags:hover {
    color: rgb(1, 1, 141);
    background-color: rgb(119, 117, 117);
    border: #333;
    text-shadow: rgb(180, 2, 2);
    cursor: pointer;
}

.card-bag-img-top {
    height: 300px;
    object-fit: contain;
    color: #000;
}
.custom-body{
    background-color: #3e4cc4;
    color: #fff;
}
.custom-title{
    color: #fff;
}
.card-text{
    color: #fff;
}
.bag-footer{
    background-color: #2e3997 !important;
}
.price{
    color: white;
}

.container{
    background-color: #6f7dff;
}
.footer{
        background-color: #010358;

}

.footer {
  background-color: #2b3f97;
  color: white;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-col {
  width: 30%;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
}

.footer-col ul li a:hover {
  color: #9ecbff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 14px;
}

/* Responsive mobile layout */
@media(max-width:768px) {
  .footer-col {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
.contact-form{
    background-color: #2e3997;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.contact-form h2{
    color: #fff;
    margin-bottom: 20px;
}
.contact-form label{
    display: block;
    margin-bottom: 5px;
}
 .contact-form textarea{
    width: 300px;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}
 .contact-form input{
    width: 200px;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}
.submit{
    background-color: #010358;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 30px;
}
.submit:hover{
    background-color: #2e3997;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 30px;
}
.submitbtn{
    
    background-color: #2e3997;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 30px;
}
.submitbtn:hover{
    background-color: #010358;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 30px;
}
.form{
    margin-left: 600px;
}

/* About Us Page Styles */
.about-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}
.about-header {
    text-align: center;
    margin-bottom: 40px;
}
.about-header h1 {
    color: #2b3f97;
    font-weight: bold;
    font-size: 3rem;
    text-transform: uppercase;
}
.about-content {
    line-height: 1.8;
    font-size: 1.15rem;
    color: #555;
}
.about-img {
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.about-img:hover {
    transform: scale(1.02);
}
.core-values {
    margin-top: 60px;
}
.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid #2b3f97;
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
}
.value-card h4 {
    color: #2b3f97;
    font-weight: bold;
}