/* Video Hero Banner Styles */
.video-hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-theme {
    background: #bf1919;
    color: #fff;
    border: 2px solid #bf1919;
}

.hero-buttons .btn-theme:hover {
    background: #a01515;
    border-color: #a01515;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 25, 25, 0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-buttons .btn-outline:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Video Hero */
@media (max-width: 768px) {
    .video-hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .video-hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
} 

/* Profile Section Styles */
.about-profile-section {
  background: #f7f7fa;
  padding: 60px 0 40px 0;
}
.profile-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.08);
  padding: 40px 30px 30px 30px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.profile-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-img {
  width: auto;
  height: 280px;
  object-fit: cover;
  border-radius: 5%;
  box-shadow: 0 4px 24px rgba(44,62,80,0.12);
  border: 6px solid #fff;
  background: #eaeaea;
}
.profile-name {
  font-size: 2rem;
  font-weight: 700;
  color: #bf1919;
  margin-top: 20px;
  margin-bottom: 0;
}
.profile-title {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 20px;
}
.profile-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.06);
  padding: 24px 28px 18px 28px;
  margin-bottom: 0;
  border-left: 5px solid #bf1919;
}
.profile-info-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #bf1919;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-info-card p {
  color: #333;
  margin-bottom: 10px;
  /* font-size: 1.05rem; */
}
@media (max-width: 991px) {
  .profile-card {
    flex-direction: column;
    padding: 30px 10px 20px 10px;
  }
  .profile-img {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 767px) {
  .about-profile-section {
    padding: 30px 0 20px 0;
  }
  .profile-card {
    padding: 18px 0 10px 0;
  }
  .profile-info-card {
    padding: 16px 10px 10px 14px;
  }
  .profile-name {
    font-size: 1.3rem;
  }
} 

/* Covid Activities Section Styles */
.covid-activities-section {
  background: #f7fafd;
  padding: 60px 0 40px 0;
}
.covid-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  padding: 32px 28px 24px 28px;
  margin-bottom: 0;
  min-height: 320px;
  border-left: 5px solid #1e90ff;
  transition: box-shadow 0.2s;
}
.covid-card:hover {
  box-shadow: 0 8px 32px rgba(44,62,80,0.16);
}
.covid-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.covid-icon {
  font-size: 2.5rem;
  color: #1e90ff;
  background: #eaf4fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30,144,255,0.08);
}
.covid-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0;
}
.covid-subtitle {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 0;
}
.covid-card-body {
  margin-top: 10px;
}
.covid-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.covid-list li {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.covid-list li i.fa-check {
  color: #1e90ff;
  margin-top: 3px;
}
.covid-list li i.fa-star {
  color: #bf1919;
  margin-top: 3px;
}
@media (max-width: 991px) {
  .covid-card {
    min-height: 220px;
    padding: 24px 10px 16px 10px;
  }
}
@media (max-width: 767px) {
  .covid-activities-section {
    padding: 30px 0 20px 0;
  }
  .covid-card {
    padding: 16px 6px 10px 6px;
    margin-bottom: 18px;
  }
} 

/* Center align business entities cards */
.business-entity-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.entity-icon {
  margin-right: 0;
  margin-bottom: 12px;
} 