body {
  background-color: #ffdab9;
  font-family: 'Roboto', Arial, sans-serif;
}

/* Header */
header {
  position: relative;
  display: flex;
  justify-content: center; /* Center align logo */
  align-items: center;
  background: linear-gradient(135deg, #ffe4c4, #ffa500);
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
}

header img {
  max-height: 80px;
}

.right-content {
  position: absolute; /* To prevent affecting logo alignment */
  right: 20px; /* Align to the right */
  display: none;
}

/* Show right-content only on desktop */
@media (min-width: 992px) {
  .right-content {
    display: block;
  }
}

.left-content {
  position: absolute; /* To prevent affecting logo alignment */
  left: 20px; /* Align to the right */
  display: none;
}

/* Show right-content only on desktop */
@media (min-width: 992px) {
  .left-content {
    display: block;
  }
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  color: #ffa500;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231e90ff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 165, 0, 0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Bouncing Marquee */
.bounce {
    height: 50px;
    overflow: hidden;
    position: relative;
    background: #f0f8ff;
    color: #ff4500;
    border: 1px solid #4a4a4a;
}
            
.bounce strong {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    -moz-animation: bouncing-text 5s linear infinite alternate;
    -webkit-animation: bouncing-text 5s linear infinite alternate;
    animation: bouncing-text 20s linear infinite alternate;
}
            
@-moz-keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
    }
    100% {
        -moz-transform: translateX(-50%);
    }
}
            
@-webkit-keyframes bouncing-text {
    0% {
        -webkit-transform: translateX(50%);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}
            
@keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    100% {
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* Scrolling Marquee */
.marquee {
  width: 100%; /* Full width */
  overflow: hidden; /* Hide overflow */
  white-space: nowrap; /* Prevent text wrapping */
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block; /* Keep content inline */
  font-weight: 700; /* Strong text */
  font-size: 1rem; /* Adjustable font size */
  color: blue; /* Text color */
  animation: scroll 50s linear infinite; /* Smooth scrolling animation */
  animation-play-state: running; /* Ensure animation runs by default */
}

.marquee:hover .marquee-content {
  animation-play-state: paused; /* Stop scrolling on hover */
}

@keyframes scroll {
  0% {
    transform: translateX(100%); /* Start from right outside */
  }
  100% {
    transform: translateX(-100%); /* End off-screen to the left */
  }
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ffa500;
  color: white;
  font-size: 0.9rem;
  margin-top: 20px;
}