/* =========================================
   VARIABLES & CONFIGURATION
   ========================================= */
:root {
  --heading-font: Forum, serif;
  --theme-font: Poppins, serif;
  --theme-color: #e1201b;
  --theme-color2: #0c1839;
  --radius: 16px;
}

/* =========================================
   MIXINS
   ========================================= */
/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", serif;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: #e1201b;
  color: #fff;
}

::selection {
  background-color: #e1201b;
  color: #fff;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Forum", serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

.common-space {
  padding: 100px 0;
}

.global-heading {
  font-family: "Forum", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.global-heading.text-dark {
  color: #0c1839;
}

.theme-color {
  color: #e1201b !important;
}

/* =========================================
   BUTTONS
   ========================================= */
.common-btn {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  color: #fff;
  background-color: #e1201b;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.common-btn:hover {
  background-color: #0c1839;
  color: #fff;
  transform: translateY(-2px);
}
.common-btn.mt-0 {
  margin-top: 0;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header.main-header {
  width: 100%;
  z-index: 1000;
  padding: 0px 0;
  background: transparent;
  transition: 0.3s ease;
}
header.main-header .navbar-brand h2 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 2px;
  transition: 0.3s ease;
}
header.main-header .navbar-toggler {
  border: none;
  padding: 0;
}
header.main-header .navbar-toggler:focus {
  box-shadow: none;
}
header.main-header .navbar-toggler span {
  font-size: 24px;
}
header.main-header .navbar-brand {
  max-width: 74px;
}
header.main-header .navbar-nav .nav-item {
  margin: 0 5px;
}
header.main-header .navbar-nav .nav-item .nav-link {
  color: #000;
  font-family: "Poppins", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 15px;
  position: relative;
  transition: 0.3s ease;
}
header.main-header .navbar-nav .nav-item .nav-link:hover, header.main-header .navbar-nav .nav-item .nav-link.active {
  color: #e1201b;
}
header.main-header .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  display: none;
}
header.main-header .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin-top: 15px;
  background: #fff;
}
header.main-header .dropdown-menu .dropdown-item {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  color: #666;
  transition: 0.3s ease;
}
header.main-header .dropdown-menu .dropdown-item:hover {
  background-color: #e1201b;
  color: #fff;
  padding-left: 25px;
}
header.main-header .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
header.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
header.main-header.sticky .navbar-brand h2 {
  color: #0c1839 !important;
}
header.main-header.sticky .navbar-toggler span {
  color: #0c1839 !important;
}
header.main-header.sticky .nav-link {
  color: #0c1839 !important;
}
header.main-header.sticky .nav-link:hover, header.main-header.sticky .nav-link.active {
  color: #e1201b !important;
}
header.main-header.sticky .navbar-brand {
  max-width: 44px;
}

.social-btn {
  display: flex;
  align-items: center;
}
.social-btn ul {
  display: flex;
  padding-left: 0;
  gap: 5px;
  margin-bottom: 0;
}
.social-btn ul li {
  list-style: none;
}
.social-btn ul li a {
  background-color: #e1201b;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
}
.social-btn ul li a.insta {
  background-color: unset;
  background-image: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
}
.social-btn ul li a.facebook {
  background-color: #1877F2;
}
.social-btn ul li a:hover {
  transform: scale(1.08);
}

/* =========================================
   HERO SECTION (VIDEO)
   ========================================= */
.hero-video-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrapper video.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero-video-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  background: unset;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5411764706) 6%, transparent 30%);
}
.hero-video-wrapper .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}
.hero-video-wrapper .hero-content .sub-hero {
  font-family: "Poppins", serif;
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #e1201b;
  display: block;
}
.hero-video-wrapper .hero-content .main-hero-title {
  font-size: 75px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-video-wrapper .hero-content .main-hero-title {
    font-size: 40px;
  }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  overflow: hidden;
}
.about-section .about-img-group {
  position: relative;
  padding: 20px;
}
.about-section .about-img-group .main-ab-img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 530px;
}
.about-section .about-img-group .exp-badge {
  position: absolute;
  bottom: 60px;
  left: 0;
  background-color: #e1201b;
  color: #fff;
  padding: 30px;
  border-radius: 0 16px 16px 0;
  text-align: center;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 160px;
}
.about-section .about-img-group .exp-badge h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}
.about-section .about-img-group .exp-badge p {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}
.about-section .about-content h5.theme-color {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-section .about-content h2 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .about-section .about-content h2 {
    font-size: 32px;
  }
}

/* =========================================
   VIDEO CTA SECTION
   ========================================= */
.video-cta-section {
  position: relative;
  padding: 180px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-cta-section .play-btn-large {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #e1201b;
  transition: 0.3s ease;
  padding-left: 5px;
  animation: pulse-white 2s infinite;
}
.video-cta-section .play-btn-large:hover {
  background: #e1201b;
  color: #fff;
  transform: scale(1.1);
}

@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* =========================================
   BLOGS SECTION
   ========================================= */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blog-card .blog-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.blog-card .blog-img .blog-date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #e1201b;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.blog-card .blog-content {
  padding: 30px;
}
.blog-card .blog-content h4 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-card .blog-content h4 a {
  color: #0c1839;
}
.blog-card .blog-content h4 a:hover {
  color: #e1201b;
}
.blog-card .blog-content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.blog-card .blog-content .read-more {
  font-size: 14px;
  font-weight: 700;
  color: #e1201b;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}
.blog-card .blog-content .read-more i {
  font-size: 12px;
  margin-left: 8px;
  transition: 0.3s ease;
}
.blog-card .blog-content .read-more:hover i {
  margin-left: 14px;
}

/* =========================================
   GALLERY SECTION (LIGHTBOX)
   ========================================= */
.popup-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 317px;
}
.popup-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  border-radius: 0;
}
.popup-gallery .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 24, 57, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}
.popup-gallery .gallery-item .gallery-overlay i {
  color: #fff;
  font-size: 40px;
  font-weight: 100;
  transform: scale(0);
  transition: 0.3s ease;
}
.popup-gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.popup-gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.popup-gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.popup-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#galleryModal .modal-content {
  background: transparent;
  border: none;
}
#galleryModal img {
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
  display: block;
  border: 4px solid #fff;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-section .team-card {
  text-align: center;
  background: transparent;
  padding-bottom: 20px;
  transition: 0.3s ease;
}
.team-section .team-card:hover .team-img-wrap img {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.team-section .team-card:hover .team-img-wrap .social-overlay {
  opacity: 1;
  bottom: 0;
}
.team-section .team-card:hover .team-info h4 {
  color: #e1201b;
}
.team-section .team-card .team-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 25px;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.team-section .team-card .team-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: 0.3s ease;
}
.team-section .team-card .team-img-wrap .social-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(to top, rgba(12, 24, 57, 0.9) 0%, transparent 100%);
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}
.team-section .team-card .team-img-wrap .social-overlay .social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.team-section .team-card .team-img-wrap .social-overlay .social-list li a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0c1839;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s ease;
}
.team-section .team-card .team-img-wrap .social-overlay .social-list li a:hover {
  background: #e1201b;
  color: #fff;
  transform: translateY(-3px);
}
.team-section .team-card .team-info h4 {
  font-family: "Forum", serif;
  font-size: 24px;
  color: #0c1839;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.team-section .team-card .team-info p {
  font-family: "Poppins", serif;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* =========================================
   FOOTER
   ========================================= */
/* =========================================
   MODERN DARK FOOTER (New Design)
   ========================================= */
footer.modern-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 60px;
  position: relative;
  font-family: "Poppins", serif;
}
footer.modern-footer h2 {
  margin-top: 1.5rem;
}
footer.modern-footer .footer-logo img {
  max-width: 24%;
}
footer.modern-footer .footer-heading {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  max-width: 90%;
}
@media (max-width: 991px) {
  footer.modern-footer .footer-heading {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
footer.modern-footer .footer-label {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 0;
}
footer.modern-footer .footer-text p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
footer.modern-footer .social-squares {
  display: flex;
  gap: 10px;
}
footer.modern-footer .social-squares a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
footer.modern-footer .social-squares a:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
footer.modern-footer .contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer.modern-footer .contact-links .email-link {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
footer.modern-footer .contact-links .email-link:hover {
  border-color: #fff;
  opacity: 0.8;
}
footer.modern-footer .contact-links .phone-link {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
footer.modern-footer .contact-links .phone-link:hover {
  color: #ccc;
}
footer.modern-footer .footer-bottom {
  margin-top: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer.modern-footer .footer-bottom p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  footer.modern-footer .footer-bottom {
    margin-top: 50px;
  }
  footer.modern-footer .footer-bottom .copyright {
    margin-bottom: 10px;
  }
}

.page-header {
  background: url(https://images.unsplash.com/photo-1493225255756-d9584f8606e9?q=80&w=1920&auto=format&fit=crop) no-repeat center center/cover;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 350px 0 300px;
  padding: 125px 0;
}
.page-header .bredlist {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .bredlist ul li {
  padding: 15px;
  list-style: none;
  color: #fff;
}

.border-theme {
  border-color: var(--theme-color) !important;
}

/* --- Leadership Section Styles --- */
#team {
  overflow: hidden;
}
#team .leader-row {
  /* Ensures text is vertically centered with image */
  position: relative;
}
#team .leader-img-frame {
  position: relative;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px; /* Slight rounded corner or use 0 for sharp */
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
#team .leader-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  /* Optional: Aspect ratio to keep images uniform size */
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(10%); /* Slight premium muted look */
}
#team .leader-row:hover .leader-img-frame {
  transform: translateY(-5px);
}
#team .leader-name {
  font-family: var(--heading-font); /* Uses Forum */
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--theme-color2); /* Dark Navy */
}
#team .leader-role {
  font-family: var(--theme-font);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
#team .leader-bio p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify; /* Keeps large blocks of text looking neat */
}

.ab-top {
  overflow: hidden;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
/* --- Contact Info Boxes --- */
.contact-box {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.contact-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left-color: var(--theme-color);
  transform: translateX(5px);
}
.contact-box:hover .icon-box {
  background-color: var(--theme-color);
  color: #fff;
}
.contact-box .icon-box {
  min-width: 50px;
  height: 50px;
  background-color: #fff;
  color: var(--theme-color);
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
  transition: all 0.3s ease;
}
.contact-box .text-box .title {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--theme-color2);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-box .text-box .address, .contact-box .text-box .contact-link {
  font-family: var(--theme-font);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-box .text-box .contact-link:hover {
  color: var(--theme-color);
}

/* --- Contact Form --- */
.contact-form-wrapper .form-label {
  font-family: var(--heading-font);
  color: var(--theme-color2);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form-wrapper .form-control {
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  font-family: var(--theme-font);
  font-size: 14px;
  transition: all 0.3s;
}
.contact-form-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: #fff;
}
.contact-form-wrapper .form-control::-moz-placeholder {
  color: #bbb;
  font-size: 13px;
}
.contact-form-wrapper .form-control::placeholder {
  color: #bbb;
  font-size: 13px;
}

/* --- Map Section --- */
.map-section {
  line-height: 0; /* Removes extra space under iframe */
}
.map-section iframe {
  filter: grayscale(100%); /* Makes map black & white for style */
  transition: filter 0.5s;
}
.map-section iframe:hover {
  filter: grayscale(0%); /* Color on hover */
}

/* =========================================
   VIDEO LISTING PAGE STYLES
   ========================================= */
/* --- Video Filters --- */
.video-filters {
  margin-bottom: 0;
}
.video-filters .list-inline-item {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #666;
  cursor: pointer;
  padding: 5px 15px;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.video-filters .list-inline-item:hover, .video-filters .list-inline-item.active {
  color: var(--theme-color2);
  border-bottom-color: var(--theme-color);
}

/* --- Video Card --- */
.video-card {
  height: 100%;
}
.video-card .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
  aspect-ratio: 16/9; /* Standard Video Ratio */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Overlay & Play Icon */
  /* Hover Effects */
}
.video-card .video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card .video-thumb .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-card .video-thumb .play-overlay .play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 20px;
  padding-left: 4px; /* Optical center for triangle */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: pulse-border 2s infinite;
}
.video-card .video-thumb:hover img {
  transform: scale(1.1);
}
.video-card .video-thumb:hover .play-overlay {
  background: rgba(0, 0, 0, 0.1); /* Lighten overlay on hover */
}
.video-card .video-thumb:hover .play-overlay .play-icon {
  transform: scale(1.2);
  background: var(--theme-color);
  color: #fff;
}
.video-card .video-info .video-title {
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--theme-color2);
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.3s;
}
.video-card .video-info .video-title:hover {
  color: var(--theme-color);
}
.video-card .video-info .video-cat {
  font-family: var(--theme-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 500;
}

/* Keyframe for Play Button Pulse */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* Responsive adjustment */
@media (max-width: 991px) {
  .leader-name {
    font-size: 28px;
    margin-top: 15px;
  }
  .leader-bio p {
    text-align: left;
  }
  .leader-img-frame img {
    aspect-ratio: auto;
    height: 400px;
  }
}
@media (max-width: 576px) {
  button.navbar-toggler.collapsed {
    position: absolute;
    right: 11px;
    top: 49px;
    z-index: 5;
    transition: all 0.3s;
    color: #000 !important;
  }
  header.main-header.sticky button.navbar-toggler.collapsed {
    top: 29px;
  }
  header.main-header.sticky .social-btn {
    top: 23px;
  }
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .modern-footer .social-squares {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
  }
  .popup-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 123px;
  }
  .common-space {
    padding: 50px 0;
  }
  header.main-header .navbar-toggler span {
    font-size: 40px;
  }
}
.blog-single .services-inner {
  padding: 1.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-single .services-inner iframe {
  width: 100%;
}
.blog-single .services-inner .content .date {
  display: flex;
  gap: 25px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(85, 85, 85, 0.425);
  padding-bottom: 10px;
  align-items: center;
  display: inline-block;
  background-color: var(--theme-color);
  color: white;
  font-size: 16px;
  padding: 5px;
}
.blog-single .services-inner ul li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #000;
}
.blog-single .services-inner ul li::before {
  position: absolute;
  content: "\f178";
  font-family: fontawesome;
  color: var(--theme-color);
  left: 0;
}
.blog-single .cate h3 {
  color: var(--theme-color);
}
.blog-single .cate ul li {
  color: var(--theme-color);
  font-size: 25px;
  font-family: var(--heading-font);
}
.blog-single .cate ul li span {
  font-family: var(--heading-font);
}
.blog-single .cate ul li ul li {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

.sidebar-recent-blogs {
  padding: 1.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.sidebar-recent-blogs h3 {
  color: var(--theme-color);
}
.sidebar-recent-blogs .cate ul {
  margin-top: 20px;
}
.sidebar-recent-blogs .cate ul li a {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}
.sidebar-recent-blogs .cate ul li a img {
  width: 80px;
  height: 80px;
}
.sidebar-recent-blogs .cate ul li a h5 {
  color: var(--theme-color2);
}
.sidebar-recent-blogs .cate ul li a p {
  margin-bottom: 0;
  transition: 0.3s;
}
.sidebar-recent-blogs .cate ul li a:hover {
  color: var(--theme-color);
}/*# sourceMappingURL=style.css.map */