 
/* Hero Section */
.contact-hero {
  background: rgba(150, 150, 150, 1) url("../img/contact us.mp4") center center / cover no-repeat;
  min-height: 60vh;
  color: #f80505;
  padding: 80px 20px;
}
.video-wrapper {
  position: relative;
  width: 100%;
}

.video-bg {
  width: 100%;
  height: auto;
  display: block;
}

.video-btn {
  position: absolute;
  top: 65%;        
  left: 50%;    
  transform: translate(-50%, -50%);
  padding: 2% 2%;
  font-size: 80%;
  z-index: 10;     
}

.contact-hero h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

.contact-hero .btn-primary {
  background-color: #f3e9ea;
  border: none;
  color: #ff0404;
  font-weight: 700;
  transition: 0.3s;
}

.contact-hero .btn-primary:hover {
  background-color: #ff0019;
  color :#ffffff;
}

/* Contact Info Boxes */
.contact-info .info-box {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  transition: 0.3s;
}

.contact-info .info-box i {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 15px;
}

.contact-info .info-box:hover {
  background: #eedbdb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
/* Section Background */
.founder-section {
  background: linear-gradient(135deg, #ffe6e6, #fff);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Title */
.founder-title {
  color: #d92332;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 2.5rem;
  animation: glowTitle 3s ease-in-out infinite;
}

@keyframes glowTitle {
  0% { text-shadow: 0 0 5px #f88; }
  50% { text-shadow: 0 0 20px #d92332; }
  100% { text-shadow: 0 0 5px #f88; }
}

/* Card Styling */
.founder-card, .about-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  background: #ffffffc9;
  backdrop-filter: blur(4px);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Founder Image */
.img-wrapper {
  overflow: hidden;
  border-bottom: 5px solid #ff6b6b;
}

.founder-img {
  width: 100%;

}



/* Name + Role */
.founder-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c70039;
}

.founder-role {
  color: #444;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Description */
.founder-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
}


