@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
/* Navbar */

/* ✅ TOP STRIP */
.top-strip {
  background: #5a3a00;
  font-size: 14px;
}

.top-social a {
  color: white;
  margin-left: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.top-social a:hover {
  color: #f4c430;
}

/* ✅ NAVBAR */
.navbar .nav-link {
  font-weight: 600;
  color: #000;
}

.navbar .nav-link:hover {
  color: #f4c430;
}

/* ✅ LOGIN BUTTON */
.login-btn {
  background: #f4c430;
  color: #000;
  font-weight: bold;
  padding: 8px 22px;
  border-radius: 30px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #000;
  color: #fff;
}


.container-fluid >img{
    height: 75px;
    width: 70px;
    border-radius: 8px;
}
.container-fluid > h2{
    color: rgb(153, 8, 8);
    padding: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.marquee-box {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
    }

    .marquee-text {
      display: inline-block;
      padding-left: 100%;
      animation: move 10s linear infinite;
    }
.marquee-text a >img{
    height: 30px;
}
.marquee-text >a{
    text-decoration: none;
}

    @keyframes move {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }


    /* slide image */
  .carousel-item img {
  height: 400px;        /* change this value as you like */
   width: 100%;
 /* keeps image proportion */
}


/* dark  */

.carousel-item {
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}

/* text animation */
.carousel-caption h5 {
  animation: slideDown 1s ease-in-out;
  color: aliceblue;
}

.carousel-caption p {
  animation: fadeIn 2s ease-in-out;
  color: aliceblue;
}

@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* card */
.box {
  padding: 50px 25px;
  min-height: 330px;
}

.box1 { background: #ff4c4c; }
.box2 { background: #f4c430; }
.box3 { background: #4b1022; }
.box4 { background: #1f97bd; }

.box h4 {
  margin-top: 15px;
  font-weight: bold;
}

.box p {
  font-size: 15px;
  margin: 15px 0;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
}

/* welcome */

.welcome-title {
  color: #ff4c4c;
  font-family: cursive;
  font-weight: bold;
}

.discover-btn {
  background: #f4c430;
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.discover-btn:hover {
  background: #e6b800;
  color: white;
}


/* status */


.stats-bg {
  background: url("bg.jpg") center/cover no-repeat;
  position: relative;
  color: white;
}

.stats-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.stats-bg .container {
  position: relative;
  z-index: 1;
}

.diamond {
  width: 90px;
  height: 90px;
  margin: auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond h2 {
  transform: rotate(-45deg);
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: white;
}

/* Colors */
.d1 { background: #5a0f0f; }
.d2 { background: #d1aa2b; }
.d3 { background: #1ec9b7; }
.d4 { background: #2eb5e5; }

.stat-text {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
/* footer */

.footer-section {
  background: #1c1c1c;
  color: #fff;
  padding: 50px 0 20px;

}

.footer-title {
  color: #f4c430;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f4c430;
}

.footer-section p {
  color: #ccc;
}

.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #333;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f4c430;
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #aaa;
  font-size: 14px;
}
