.text-red-color {
  color: red;
}

.bg-red-color {
  background-color: red;
}
.red-strip{
  background-color: black;
  color: #fff;
}

.nav-active{
  background-color: red;
}

.nav-active a{
  color: white;
}
.navbar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-style: Arial, sans-serif;;
}
.box-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/* -------------------------------------- */


/* css for Who we are  */
.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* border: 1px solid; */
}

.video-wrapper video {
  width: 100%;
  height: 50%;
  display: block;
}

/* Gradient overlays */
.video-gradient::before,
.video-gradient::after,
.video-gradient .left-gradient,
.video-gradient .right-gradient {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.video-gradient::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 11%;
  background: linear-gradient(to bottom, rgba(255, 255, 255), transparent);
}

.video-gradient::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11%;
  background: linear-gradient(to top, rgba(255, 255, 255), transparent);
}

.video-gradient .left-gradient {
  top: 0;
  left: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255), transparent);
}

.video-gradient .right-gradient {
  top: 0;
  right: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255), transparent);
}
/* ---------------------------------- */
.about-us-bg-img{
    background-image: url("../images/about-bg-img-1.png");
      background-size: fixed;
  background-position: center;
  background-repeat: no-repeat;
    /* opacity: 0.5; */
}

.brick-section{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
 } 

 .line{
    height: 10px;
    background-color: rgb(192, 137, 137);
 }

.contact-card {
    background-color: rgb(233, 233, 233);
    border-radius: 10px;
    padding: 30px;
    color: black
}

.contact-card input,
.contact-card textarea {
    background-color: white;
    color: white;
    border: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: #ccc;
}

.contact-card input:focus,
.contact-card textarea:focus {
    box-shadow: none;
    outline: none;
}

.btn-send {
    font-weight: 600;
}
/* 
iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

@media (max-width: 768px) {
    .contact-card,
    iframe {
        margin-bottom: 1.5rem;
    }
} */


/* --------------------------------------- */
/* css for footer-section */
footer {
  color: black;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

footer ul li a:hover {
  color: red;
}

.footer-bottom {
  background: red;
  color: #ccc;
  padding: 20px 0;
  font-size: 14px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #f1f1f1;
  color: black;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: red;
  color: #fff;
}

.subscribe-box input {
  border: 1px solid #ddd;
  border-radius: 0;
}

.subscribe-box button {
  background: red;
  border: none;
  color: #fff;
  border-radius: 0;
}

/* ✅ Floating Social Icons Around Footer Man */
.footer-floating-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  /* animation: bounce 2s infinite ease-in-out; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Random placements */
.icon-fb {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.icon-tw {
  top: 30%;
  right: 35%;
  animation-delay: 0.4s;
}

.icon-li {
  bottom: 15%;
  left: 20%;
  animation-delay: 0.8s;
}

.icon-ig {
  bottom: 15%;
  right: 35%;
  animation-delay: 1.2s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .footer-floating-icon {
    display: none;
  }
}
