:root {
    --primary-color: #008B8B;
    --secondary-color: #006666;
}

* {
    font-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

/* Top Navigation */
.top-nav {
    background-color: white;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-nav .navbar-brand img {
    height: 40px;
}

.top-nav .nav-link {
    color: #333;
    font-size: 13px;
    padding: 5px 15px;
    font-weight: 400;
}

.top-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Article Cards */
.article-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image-wrapper {
    position: relative;
}

.article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
}

.badge-day {
    font-size: 20px;
    font-weight: 700;
}

.badge-month {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    min-height: 60px;
    line-height: 1.4;
}

.article-description {
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-learn-more {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-learn-more:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-view-more {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 14px;
    margin: 40px auto;
    display: block;
    width: fit-content;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-view-more:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: white;
}

.video-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.video-section p {
    text-align: center;
    color: #000;
    margin-bottom: 40px;
    font-size: 14px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-container img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button i {
    font-size: 80px;
    color: white;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.3s;
}

.play-button i:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 30px;
}

.footer h5 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer .contact-info p {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer .contact-info i {
    margin-right: 10px;
}

.btn-email {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 13px;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-email:hover {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid white;
}

.btn-email i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .article-title {
        min-height: auto;
    }
    
    .article-image {
        height: 200px;
    }
}

/* contact us */

/* Contact Banner Section */
.contact-banner {
    background: linear-gradient(135deg, #6eb5b8 0%, #4a9a9d 100%);
    padding: 80px 0;
}

.banner-icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 50px;
    display: inline-block;
    transition: transform 0.3s;
}

.banner-icon-box:hover {
    transform: translateY(-5px);
}

.banner-icon-box i {
    font-size: 80px;
    color: white;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: white;
}

.info-icon {
    width: 80px;
    height: 80px;
    background-color: #5eb5b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 32px;
    color: white;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #5eb5b8;
    margin-bottom: 15px;
}

.info-text {
    font-size: 13px;
    color: #000;
    line-height: 1.8;
}

/* Map and Form Section */
.map-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.form-label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    font-size: 14px;
    background-color: transparent;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #5eb5b8;
    box-shadow: none;
    background-color: transparent;
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: none;
    border-bottom: 1px solid #ddd;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.btn-submit {
    background-color: #5eb5b8;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #4a9a9d;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-icon-box {
        padding: 40px;
    }
    
    .banner-icon-box i {
        font-size: 60px;
    }
    
    .contact-banner {
        padding: 60px 0;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
}


/* About Banner */
.about-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: #000;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-text {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Executive Council Section */
.executive-council-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.council-members {
    margin-top: 50px;
}

.council-member {
    margin-bottom: 40px;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-photo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #5eb5b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-photo-circle i {
    font-size: 80px;
    color: white;
}

.member-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    text-align: justify;
}

.member-bio strong {
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .about-banner {
        height: 250px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .executive-council-section {
        padding: 60px 0;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .member-photo-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .member-photo-circle i {
        font-size: 60px;
    }
    
    .member-name {
        font-size: 20px;
        text-align: center;
    }
    
    .member-bio {
        text-align: left;
    }
}


/* Research Introduction Section */
.research-intro-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.intro-text {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Research Projects Section */
.research-projects-section {
    padding: 80px 0;
    background-color: white;
}

.project-icon {
    width: 140px;
    height: 140px;
    background-color: #5eb5b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.project-icon i {
    font-size: 50px;
    color: white;
    position: absolute;
}

.project-icon i:first-child {
    left: 25px;
}

.project-icon i:last-child {
    right: 25px;
}

.project-title {
    font-size: 26px;
    font-weight: 500;
    color: #5eb5b8;
    text-align: center;
    margin-bottom: 25px;
}

.project-description {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .research-intro-section {
        padding: 40px 0;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .research-projects-section {
        padding: 60px 0;
    }
    
    .project-icon {
        width: 120px;
        height: 120px;
    }
    
    .project-icon i {
        font-size: 40px;
    }
    
    .project-icon i:first-child {
        left: 20px;
    }
    
    .project-icon i:last-child {
        right: 20px;
    }
    
    .project-title {
        font-size: 22px;
    }
    
    .project-description {
        text-align: left;
    }
}

/*Video homepage*/
/* --- Responsive Video Hero (video-hero-*) --- */
.video-hero-wrapper {
  position: relative;
  width: 100%;
  height: 85vh;              /* desktop/tablet height */
  min-height: 420px;
  max-height: 1100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;          /* fallback color */
}

/* The video covers the whole area and is centered */
.video-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;               /* we use min-width/min-height below */
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
}

/* Container for content over video */
.video-hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

/* Headline styles - scale with viewport */
.video-hero-title {
  margin: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.05;
  font-weight: 600;
  text-shadow: 0 3px 18px rgba(0,0,0,0.45);
  font-size: calc(1.8rem + 2.2vw);  /* fluid sizing */
}

/* subtitle slight tweak */
.video-hero-subtitle {
  font-weight: 400;
  display: inline-block;
}

/* Small decorative spacing for very large screens */
@media (min-width: 1400px) {
  .video-hero-wrapper { height: 80vh; }
  .video-hero-title { font-size: 4.4rem; }
}

/* Tablet */
@media (max-width: 991.98px) {
  .video-hero-wrapper {
    height: 65vh;
    min-height: 360px;
  }
  .video-hero-title {
    font-size: calc(1.6rem + 2vw);
  }
}

/* Mobile: reduce height & font, hide video on ultra-small screens optionally */
@media (max-width: 575.98px) {
  .video-hero-wrapper {
    height: 52vh;
    min-height: 260px;
  }
  .video-hero-title {
    font-size: calc(1.2rem + 3vw);
  }
  /* If you want to hide the video on very small phones for performance, uncomment: */
  /* .video-hero-bg { display: none; } */
}

/* accessibility: ensure contrast when video is dark */
.video-hero-content .video-hero-title,
.video-hero-content .video-hero-subtitle { color: #ffffff; }

/* Optional: add a subtle gradient overlay after the video for better contrast */
/* Uncomment if you later want an overlay */
.video-hero-wrapper::after {
  /* content: ""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)); z-index:1; */
}


/* --- Blog Hero Section --- */
.blogs-hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.blogs-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blogs-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Network Introduction Section */
.network-intro-section {
    padding: 60px 0;
    background-color: white;
}

.intro-text {
    font-size: 15px;
    color: #000;
    line-height: 1.9;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Network Accordion Section */
.network-accordion-section {
    padding: 60px 0;
    background-color: white;
}

.accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 0;
    background-color: transparent;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: #f5f5f5;
    color: #333;
    border: none;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: #5eb5b8;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    display: none;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    min-width: 25px;
    display: inline-block;
}

.accordion-button.collapsed .accordion-icon {
    content: '+';
}

.accordion-title {
    flex: 1;
}

.accordion-body {
    background-color: white;
    padding: 30px 25px 30px 65px;
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    border-left: 3px solid #5eb5b8;
}

.accordion-collapse {
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .network-intro-section {
        padding: 40px 0;
    }
    
    .intro-text {
        font-size: 14px;
        text-align: left;
    }
    
    .network-accordion-section {
        padding: 40px 0;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 16px;
        gap: 10px;
    }
    
    .accordion-icon {
        font-size: 24px;
        min-width: 20px;
    }
    
    .accordion-body {
        padding: 20px 20px 20px 50px;
        font-size: 14px;
    }
}


/* Career Introduction Section */
.career-intro-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 15px;
    color: #000;
    line-height: 1.9;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Career Opportunities Section */
.career-opportunities-section {
    padding: 60px 0;
    background-color: white;
}

/* Accordion Styles */
.accordion {
    margin-bottom: 30px;
}

.accordion-item {
    border: none;
    margin-bottom: 0;
    background-color: transparent;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: #f5f5f5;
    color: #333;
    border: none;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: #5eb5b8;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    display: none;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    min-width: 25px;
    display: inline-block;
}

.accordion-title {
    flex: 1;
}

.accordion-body {
    background-color: white;
    padding: 30px 25px 30px 65px;
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    border-left: 3px solid #5eb5b8;
}

.accordion-collapse {
    border: none;
}

/* Application Form */
.application-form-container {
    background-color: white;
    padding: 0;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.form-label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    font-size: 14px;
    background-color: transparent;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #5eb5b8;
    box-shadow: none;
    background-color: transparent;
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

/* File Upload Styles */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.btn-file-upload {
    background-color: #5eb5b8;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-file-upload:hover {
    background-color: #4a9a9d;
}

.file-upload-text {
    font-size: 14px;
    color: #999;
    flex: 1;
}

/* Submit Button */
.btn-submit {
    background-color: #5eb5b8;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #4a9a9d;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .career-opportunities-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .career-intro-section {
        padding: 40px 0;
    }
    
    .intro-text {
        font-size: 14px;
        text-align: left;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 16px;
        gap: 10px;
    }
    
    .accordion-icon {
        font-size: 24px;
        min-width: 20px;
    }
    
    .accordion-body {
        padding: 20px 20px 20px 50px;
        font-size: 14px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-file-upload {
        width: 100%;
    }
}

/*17-11-2025*/

/* -----------------------
   Responsive rectangle hero — Video hero + Image hero
   ----------------------- */

/* Video hero wrapper (fixed rectangle banner) */
.video-hero-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;          /* desktop default rectangle height */
  max-height: 520px !important;
  overflow: hidden !important;
  display: block !important;
  background: #fff !important;       /* fallback color */
  border-radius: 8px !important;
}

/* Make the video fill the rectangle and remain centered */
.video-hero-wrapper video.video-hero-bg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) scale(0.9) !important; /* smaller = zoom out */
  object-fit: contain !important; /* show the full video, no crop */
  object-position: center center !important;
  display: block !important;
  z-index: 0 !important;
  background: #fff !important; /* fill side gaps with black */
}


/* ensure overlay content sits above the video */
.video-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* Image hero (rectangle banner) */
.blogs-hero-section {
  position: relative !important;
  width: 100% !important;
  height: 320px !important;          /* image hero height */
  min-height: 260px !important;
  overflow: hidden !important;
  /*border-radius: 8px !important;*/
  display: block !important;
}

.blogs-hero-section .blogs-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.blogs-hero-section .blogs-hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  /*border-radius: 8px !important;*/
}

/* Make both banners slightly shorter/tighter on tablet */
@media (max-width: 991.98px) {
  .video-hero-wrapper { height: 360px !important; min-height: 300px !important; }
  .blogs-hero-section { height: 260px !important; min-height: 220px !important; }
  .video-hero-wrapper video.video-hero-bg { min-height: 100% !important; min-width: 100% !important; }
}

/* Mobile: make banners shorter for better viewport fit */
@media (max-width: 575.98px) {
  .video-hero-wrapper { height: 220px !important; min-height: 180px !important; border-radius: 0 !important; }
  .blogs-hero-section { height: 180px !important; min-height: 140px !important; border-radius: 0 !important; }
  /* optional: pause/hide video on very small screens (uncomment if desired) */
  /* .video-hero-wrapper video.video-hero-bg { display: none !important; } */
}

/* Accessibility / visual polish */
.video-hero-wrapper::after,
.blogs-hero-section::after {
  /* subtle gradient overlay if you want better text contrast.
     disable by setting opacity to 0 if you don't want any overlay. */
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.08)) !important;
  z-index: 1 !important;
  pointer-events: none !important;
  border-radius: 8px !important;
}

/* Make sure any inner container content is above overlay */
.video-hero-wrapper .video-hero-content,
.blogs-hero-section .container {
  position: relative !important;
  z-index: 3 !important;
}

/* Safety: ensure iframes used inside .video-hero-wrapper (if you ever embed) also fit */
.video-hero-wrapper iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px !important;
  object-fit: cover !important;
}

/* Remove any previously applied full-screen hero rules */
.hero-section,
.hero-section *,
.video-hero-wrapper.hero-section,
.blogs-hero-section.hero-section {
  /* no-op but keep specificity to override */
  height: auto !important;
  min-height: 0 !important;
}
