.hero-custom {
  padding-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 100px;
  height: 89vh;
}

/* Carousel height fix */
.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item,
.hero-carousel .item {
  height: 100%;
}

/* Image full cover */
.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-carousel .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.7));
}

/* Header */
.hero-header {
  position: absolute;
  top: 30px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 100px;
  z-index: 10;
}

.hero-header span {
  color: #fff;
  letter-spacing: 3px;
  font-size: 14px;
}

.hero-line {
  border: none;
  height: 1px;
  background: rgb(182 131 45);
  margin: 20px 0 0;
}

.stats-row h2 {
  font-weight: 700;
}

.stats-row p {
  font-size: 0.8rem;
  opacity: 0.8;
}


/* Nav */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons button {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* Loader */
.carousel-loader {
  position: absolute;
  top: 80px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.loader-bar {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}


.loader-animate {
  animation: load linear forwards;
}

@keyframes load {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Content overlay */
.hero-content {
  position: absolute;
  bottom: 200px;
  left: 20px;
  z-index: 10;
  color: #fff;
  max-width: 80%;
}

.hero-content h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  font-family: 'Montserrat';
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 14px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

/* 📱 MOBILE OPTIMIZATION */
@media screen and (max-width: 1200px) {

  .hero-custom {
    margin-top: 108px;
    height: 89vh;
  }

  .hero-carousel,
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item,
  .hero-carousel .item {
    height: 100vh;
  }

  /* BAFTA-style image behavior */
  .hero-carousel img {
    object-fit: cover;
    /* 🔥 key fix */
    background: #000;
    /* BAFTA black bars */
  }


  /* Softer overlay */
  .hero-carousel .item::after {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.85));
  }

  /* Content position like BAFTA */
  .hero-content {
    bottom: 300px;
    max-width: 90%;
  }

  .hero-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  /* Header spacing */
  .hero-header {
    top: 12px;
  }

  .carousel-loader {
    top: 48px;
  }


}



/*  Awards section */
.awards-section {
  padding: 40px 20px;
}

.awards-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.award-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.award-header {
  text-align: left;
}

.award-header h3 {
  margin: 8px 24px 0;
  font-size: 22px;
  color: #1e2445;
  text-align: left;
}

.annual {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #d4a024;
  font-family: 'Montserrat';
  margin-left: 10px;
}

/* BADGES */
.badge {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #d4a024;
  font-family: 'Montserrat';
  border-radius: 999px;
  background: #0c1426;
  padding: 8px;
}

.top-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d4a024;
  color: #000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: bold;
  font-family: 'Montserrat';
}


.award-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Round icon */
.award-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff3df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon i {
  font-size: 18px;
  color: #d4a024;
}

/* Round icon */
.awards-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #cc991e, #bf8f15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.awards-icon i {
  font-size: 38px;
  color: #ffffff;
}


/* Text block */
.award-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.award-type {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #d4a024;
  font-family: 'Montserrat';
  text-align: left;
}

.award-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1e2445;
  font-family: 'Playfair Display', serif;
}


/* IMAGE */
.award-image {
  background: #1a1f3d;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.award-image img {
  max-width: 100%;
  height: 220px;
  object-fit: contain;
}

/* TEXT */
.award-desc {
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

/* CATEGORIES */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cattext {
  font-size: 12px;
  color: #d4a024;
  font-weight: bold;
  font-family: 'Montserrat';
  text-align: left;
}

.categories span {
  border: 1px solid #e5dccb;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  background: #fff8ea;
  color: #0a1223;
  font-weight: bold;
  font-family: 'Montserrat';
}

/* HOVER (optional) */
.award-card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* 📱 MOBILE */
@media screen and (max-width: 900px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-image img {
    height: 180px;
  }

  .top-badge {
    position: absolute;
    margin-bottom: 10px;
    width: fit-content;
  }
}

/* journey-section ---------------------------------------------------------------------------------------------------*/
/* Base – Mobile First (320px+) */
.journey-section {
  background: #fcf7f0;
  padding: 50px 16px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.journey-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e2445;
  margin-bottom: 36px;
}

.journey-title span {
  color: #d4a024;
}

/* Cards stack by default */
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.journey-card:hover {
  background: #b5b8c6;
  color:#fff;  
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.step-num {
  font-size: 28px;
  font-weight: 600;
  color: #e8d9b9;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.journey-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e2445;
}

.journey-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6f86;
}

/* Tablets (≥600px) */
@media screen and (min-width: 600px) {
  .journey-title {
    font-size: 28px;
  }

  .journey-card h3 {
    font-size: 20px;
  }
}

/* Small laptops / tablets landscape (≥900px) */
@media screen and (min-width: 1000px) {
  .journey-section {
    padding: 80px 40px;
  }

  .journey-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
  }

  /* Connector lines */
  .journey-steps::before,
  .journey-steps::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: #e3d6b8;
  }

  .journey-steps::before {
    left: 32%;
  }

  .journey-steps::after {
    left: 66%;
  }
}

/* Large screens (≥1400px) */
@media screen and (min-width: 1400px) {
  .journey-title {
    font-size: 40px;
  }

  .journey-card {
    padding: 44px 36px;
  }
}


/* award-section ---------------------------------------------------------------------------------------------------*/
.award-section {
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.award-section .badge {
  background: #d9a321;
  color: #000000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.award-section h2 {
  font-size: 50px;
  margin: 15px 0;
  font-weight: bold;
  color: #000;
}

.award-section h2 span {
  color: #d9a321;
}

.award-section .subtitle {
  color: #666;
  max-width: 600px;
  margin: auto;
  font-family: 'Montserrat';
}

.award-section .tabs {
  display: inline-flex;
  background: #f2eadc;
  margin: 30px 0;
  font-family: 'Cormorant Garamond';
  font-size: 15px;
}

.award-section .tab-btn {
  padding: 3px 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.award-section .tab-btn.active {
  background: #d9a321;
  color: #000;
}

/* Content */
.award-section .tab-content {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.award-section .tab-content.active {
  display: block;
}

/* Feather cards */
.award-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.award-section .award-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.award-section .month {
  color: #d9a321;
  font-size: 12px;
}

.award-section .tag {
  display: inline-block;
  /* margin-top: 10px; */
  color: #d9a321;
  font-size: 12px;
}

.award-section .tag2 {
  display: inline-block;
  background-color: #faf5eb;
  color: #d9a321;
  font-size: 12px;
  padding: 4px;
  font-family: 'Cormorant Garamond';
  letter-spacing: 1.8px;
  border: 1px solid #f6ebd3;
  border-radius: 6px;
  margin-left: 20px;
}

/* Eagle timeline */
.award-section .timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* Eagle timeline */
.award-section h3 {
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: bold;
  padding-top: 12px;
  color: #091122;
}

.award-section p {
  font-size: 15px;
  font-family: 'Montserrat';
  padding-top: 5px;
  color: #494949;
}

.award-section .timeline-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 28px;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid rgba(212, 160, 36, 0.15);
  position: relative;
  overflow: hidden;
  margin: 0px 300px 0px 300px;
}
/* Hover effect */
.award-section  .timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 18px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 160, 36, 0.3);
}

/* Subtle gold glow overlay */
.award-section .timeline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 160, 36, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.award-section.timeline-card:hover::after {
  opacity: 1;
}


.award-section .timeline-card button {
  padding: 10px 22px;
  border-radius: 20px;
  border: 1.5px solid #0b1430;
  background: #0b1430;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}


.award-section .icon {
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: left;
}

.award-section .info {
  flex: 1;
  text-align: left;
  margin-left: 20px;
}

.award-section .year {
  color: #d7a625;
  font-size: 25px;
  font-weight: bold;
}

.award-section .btn {
  border: 2px solid #1d2645;
  background: transparent;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}
/* Icon animation */
.awards-icon {
  width: 56px;
  height: 56px;
  background: #d4a024;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c1426;
  font-size: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.timeline-card:hover .awards-icon {
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 10px 25px rgba(212, 160, 36, 0.5);
}

/* Button hover sync */
.timeline-card:hover .blue-btn {
  background: #0c1426;
  color: #fff;
  transform: translateX(4px);
}

/* Button animation */
.blue-btn {
  transition: all 0.3s ease;
}
@media (hover: none) {
  .timeline-card:hover {
    transform: none;
    box-shadow: none;
  }
}
/* Mobile */
@media screen and (max-width: 992px) {
  
  .award-section .timeline-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
    margin: 0px 100px 0px 100px;
  }
  .eagle-card .info {
    margin-left: 0;
    text-align: center;
}
}
/* Mobile */
@media screen and (max-width: 768px) {
  .award-section h2 {
    font-size: 28px;
  }

  .award-section .timeline-card {
    flex-direction: column;
    text-align: left;
    gap: 15px;
    align-items: center;
    margin: 0;
  }

  .award-section .info {
    margin: 0;
  }

  .award-section .tabs {
    display: inline-flex;
    background: #f2eadc;
    border-radius: 40px;
    margin: 30px 0;
    font-family: 'Cormorant Garamond';
    font-size: 14px;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.award-section .award-card {
  background: linear-gradient(145deg, #ffffff, #fffcf7);
  border: 1px solid #f3eadd;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-section .award-section .award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Top */
.award-section .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.award-section .month {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d9a321;
  font-weight: bold;
  font-family: 'Montserrat';
}

.award-section .award-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff4dc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Title */
.award-section .title {
  font-size: 21px;
  color: #1d2645;
  font-family: 'Montserrat';
  text-align: left;
}

.award-section .title:hover {
  color: #B5832D;
}

/* Meta info */
.award-section .meta {
  display: flex;
  flex-direction: column;
  color: #6f7285;
  font-size: 16px;
  font-family: 'Cormorant Garamond';
}

.award-section .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.award-section .icon {
  font-size: 16px;
  text-align: left;
}

/* Footer */
.award-section .card-footer {
  padding-top: 5px;
  border-top: 1px solid #f1e4c8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.award-section .tag {
  color: #d6a437;
  font-size: 13px;
  font-family: 'Montserrat';
  font-weight: bold;
}

.award-section .arrow {
  font-size: 28px;
  color: #d9a321;
  transition: transform 0.3s ease;
}

.award-section .award-card:hover .arrow {
  transform: translateX(6px);
}

/* 📱 Mobile */
@media screen and (max-width: 768px) {
  .award-section .award-card {
    padding: 22px;
  }

  .award-section .title {
    font-size: 22px;
  }

  .award-section .meta {
    font-size: 15px;
  }
}


/* NEW CHANGE IN AWARDS SECTION TABS*/
/* Image-style winner cards .award-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}*/ 
 
 
/* Tablet */
@media screen and (max-width: 992px) {
  .award-section .card-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .award-section .card-grid {
    grid-template-columns: repeat(1, minmax(300px, 1fr));
  }
}
.image-card {
  padding: 0;
  overflow: hidden;
}

/* Image */
.image-wrap {
  position: relative;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}

/* Month badge (top-right) */
.month-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #d9a321;
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Award label overlay (bottom-left) */
.image-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 13px;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Card body */
.card-body {
  padding: 18px 22px 24px;
  text-align: left;
  background: #fffdf5;
}

.winner-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1d2645;
}

.film-name {
  font-size: 12px;
  color: #6f7285;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Hover */
.image-card:hover img {
  transform: scale(1.05);
}

.image-wrap img {
  transition: transform 0.4s ease;
}

/* Eagle list wrapper */
.eagle-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Card background */
.eagle-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fffde9;
  padding: 50px 60px;
  border-radius: 20px;
  border: none;
  box-shadow: none;
}

/* Circular image */
.eagle-img {
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #d9a321;
  overflow: hidden;
}

.eagle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.eagle-card .info {
  margin-left: 0;
}

.eagle-year {
  display: inline-block;
  background: #f5eccb;
  color: #d9a321;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Montserrat';
}

.eagle-card h3 {
  font-size: 18px;
  font-family: 'Cormorant Garamond';
  color: #1d2645;
  margin-bottom: 10px;
  font-weight: bold;
}

.eagle-card h4 {
  font-size: 14px;
  color: #d9a321;
  margin-bottom: 6px;
  font-weight: 600;
}

.eagle-card p {
  font-size: 12px;
  color: #6f7285;
}

/* Hover (very subtle like premium sites) */
.eagle-card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  /* Text */
.eagle-card .info {
  margin-left: 0;
  text-align: center;
}
  
  .eagle-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 26px;
  }

  .eagle-img {
    width: 100px;
    height: 100px;
  }

  .eagle-card h3 {
    font-size: 20px;
  }

  .eagle-card h4 {
    font-size: 14px;
  }

  .eagle-card p {
    font-size: 12px;
  }
}


/*  testimonial section --------------------- --------------------- --------------------- --------------------- ---------------------*/

.blue-btn {
  background: #091323;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-family: 'Montserrat';
}


.blue-btn:hover {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-family: 'Montserrat';
  font-weight: bold;
}


.testimonials {
  background: radial-gradient(circle at left, #091122, #1a2746);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

 
.pill {
  background: #d4a024;
  color: #111;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
}

h2 {
  font-size: 44px;
  margin: 20px 0 10px;
  font-family: serif;
}

h2 span {
  color: #d4a024;
}

.subtitle {
  margin: auto;
  color: #c6c9d8;
  font-size: 16px;
  padding-bottom: 5px;
}

/* Cards */
.testimonial-card {
  background: #f7f2e8;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: left;
  min-height: 340px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote {
  font-size: 48px;
  color: #e1c48c;
  font-weight: bold;
}

.testimonial-card p {
  color: #4c5068;
  font-size: 16px;
  line-height: 1.7;
  margin: 0px 0 20px;
}

.stars {
  color: #d4a024;
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card h4 {
  color: #1c2340;
  margin: 0;
}

.award {
  color: #d4a024;
  font-size: 13px;
  display: block;
}

.country {
  color: #7a7f96;
  font-size: 13px;
}



/* 📱 Mobile */
@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 30px 22px;
    min-height: auto;
  }
}



.info-section {
  padding: 60px 20px;
  background: #ffffff;
}

.info-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.info-card {
  background: #f8f1e6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  color: #1d2645;
  font-family: 'Montserrat';
  font-weight: bold;
}

.icon {
  color: #d9a321;
}

/* Deadlines */
.deadline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deadline strong {
  font-size: 18px;
  color: #1d2645;
  font-weight: bold;
}

.deadline p {
  font-size: 12px;
  color: #6f7285;
  margin-top: 4px;
  font-family: 'Montserrat';
  font-weight: bold;
}

.divider {
  height: 1px;
  background: #eadfc8;
  margin: 14px 0;
}

/* Status */
.status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.status.open {
  background: #e6f6ed;
  color: #1c9b55;
  font-family: 'Montserrat';
  font-weight: bold;
}

.status.upcoming {
  background: #fff1da;
  color: #967119;
}

/* Benefits */
.benefits {
  padding-left: 18px;
  color: #0a1324;
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: bold;
}

.benefits li {
  margin-bottom: 10px;
}

/* Help */
.help-text {
  font-size: 18px;
  color: #091122;
  margin-bottom: 12px;
}

.email {
  font-size: 18px;
  color: #98741e;
  text-decoration: none;
  font-weight: 500;
}

.email:hover {
  text-decoration: underline;
  color: #98741e;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/*  Footer section --------------------- --------------------- --------------------- --------------------- ---------------------*/
footer li a {
  font-family: 'Montserrat' !important;
  font-size: 14px;
}

footer p {
  font-family: 'Montserrat' !important;
  font-size: 14px;
}


.screenings-section {
  background: radial-gradient(circle at top, #0f2a52, #070d1f);
  color: #fff;
}

.showcase-badge {
  background: transparent;
  border: 1px solid #d4a024;
  color: #d4a024;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-align: left;
}

.screensection-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
}

.screensection-subtitle {
  color: #cfd6e3;
  max-width: 520px;
  font-family: 'Montserrat';
  text-align: left;
}

.stats-row {
  display: flex;
  flex-wrap: nowrap; /* 🔥 prevents stacking */
}

.stats-row .col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.stats-row h2 {
  color: #d4a024;
  font-weight: 700;
  font-size: 2rem;
}

.stats-row p {
  font-size: 0.75rem;
  white-space: nowrap; /* 🔥 prevents text wrapping */
  opacity: 0.8;
}

/*  screening section --------------------- --------------------- --------------------- --------------------- ---------------------*/
.screening-card {
  border-radius: 18px;
  padding: 40px;
  transition: transform .4s ease, box-shadow .4s ease;
  border: 1px solid #ffffff14;
}

.screening-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.dark-card {
  background: linear-gradient(145deg, #0b2447, #07152d);
}

.gold-card {
  background: #d4b03a;
  color: #0c1426;
  position: relative;
}

.gold-card ul li,
.gold-card h4 {
  color: #0c1426;
}

.highlight {
  color: #d4a024;
}

ul {
  padding-left: 18px;
  font-family: 'Montserrat';
}

ul li {
  margin-bottom: 10px;
}

.exclusive {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #0c1426;
  color: #d4a024;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
}

.reward-box {
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 16px;
  font-family: 'Montserrat';
}

.reward-total {
  font-size: 1rem;
  font-family: 'Montserrat';
}

.submit-btn {
  background: #d4a024;
  color: #0c1426;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat';
  font-weight: bold;
}

.submit-btn:hover {
  background: #f0c94a;
  color: #000;
}
.screening-card h4{
  color:#fff;
}

/* Mobile */
@media (max-width: 768px) {
  .screensection-title {
    font-size: 2.2rem;
  }

  .screening-card {
    padding: 28px;
  }
}
@media screen and (max-width: 750px) {
  .stats-row h2 {
    font-size: 1.6rem;
  }
}

.reward-total i{
      color: var(--gold-dark);
    padding-top: 2px;
    font-size: 30px;
}.hero-line1 { flex: 1; height: 1px; }


/* BLOG SECTION*/
.blogheader {
  background: linear-gradient(#fff7e6, #fff3dc);
  padding: 80px 20px;
  text-align: center;
  margin-top: 95px;
}

.blogheader-container {
  max-width: 900px;
  margin: 0 auto;
}

.blogheader-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  color: #b22222;
  margin-bottom: 20px;
}

.blogheader-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #090e23;
  max-width: 700px;
  margin: 0 auto 40px;
}

.blogheader-search {
  display: flex;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 40px;
  padding: 14px 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blogheader-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  padding-left: 10px;
}

.search-icon {
  font-size: 18px;
  color: #d4a017;
}

/* Responsive */
@media (max-width: 768px) {
  .blogheader-title {
    font-size: 40px;
  }

  .blogheader-subtitle {
    font-size: 16px;
  }
}

/* BLOG SECTION ---------------------------------------------------------------------------------------------------*/


/*Featured stories*/
.featuredstories {
   background: #ffffff;
  padding: 43px 250px;
  font-family: "Inter", sans-serif;
}

/* Filters */
.featuredstories-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  font-size: 12px;
}

.featuredstories-filters button {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #374151;
}

.featuredstories-filters button.active {
  background: #b91c1c;
  color: #fff;
  border-color: #b91c1c;
  box-shadow: 0 6px 15px rgba(185, 28, 28, 0.3);
}

/* Title */
.featuredstories-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.featuredstories-title span {
  width: 4px;
  height: 28px;
  background: #d4a017;
  border-radius: 3px;
}

.featuredstories-title h2 {
  font-size: 32px;
  color: #111827;
}

/* Grid */
.featuredstories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.story-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

/* Image */
.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.story-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  color: #fff;
}

.story-tag.news {
  background: #d4a017;
}

.story-tag.behind {
  background: #1f2937;
}

.story-tag.interviews {
  background: #a7042a;
}

.story-tag.reviews {
  background: #015652;
}

.story-tag.industry {
  background: #3403b1;
}


/* Content */
.story-content {
  padding: 22px;
}

.story-date {
  font-size: 14px;
  color: #6b7280;
}

.story-content h3 {
  font-size: 22px;
  color: #991b1b;
  margin: 10px 0;
  font-weight: bold;
  font-family: 'Montserrat';
}

.story-content p {
  color: #4b5563;
  line-height: 1.6;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 14px;
  color: #6b7280;
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
   .featuredstories {
 
  padding: 43px 195px;
  font-family: "Inter", sans-serif;
}
    
}

/* Tablet */
@media (max-width: 1199px) {
  .featuredstories {
    padding: 30px 60px;
  }  

  
}

/* Mobile */
@media (max-width: 767px) {
  .featuredstories {
    padding: 20px;
  }
   
}

/* Responsive */
@media (max-width: 992px) {
  .featuredstories-grid {
    grid-template-columns: 1fr;
  }

  .story-image img {
    height: 220px;
  }
  .featuredstories {
  background: #fff7e6;
  padding: 43px 60px;
  font-family: "Inter", sans-serif;
}
  
}

@media (max-width: 576px) {
  .featuredstories-title h2 {
    font-size: 26px;
  }

  .story-content h3 {
    font-size: 20px;
  }
  .featuredstories {
  background: #fff7e6;
  padding: 43px 18px;
  font-family: "Inter", sans-serif;
}
} 

 
.featuredstories-filters .tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e3e3e3;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featuredstories-filters .tab:hover {
  background: #f6f6f6;
}

.featuredstories-filters .tab.active {
  background: #b11226;
  color: #fff;
  border-color: #b11226;
  box-shadow: 0 6px 16px rgba(177, 18, 38, 0.3);
}

/* Hide inactive cards */
.story-card {
  display: none;
}

.story-card.active {
  display: block;
}

/* Responsive */
@media (max-width: 767px) {
  .featuredstories-filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}


/**blog detail section **/
.blog-detail {
  background: #fff;
  padding: 169px 0 0px;
}

.back-link {
  color: #0a0f25;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Montserrat';
}

.back-link i {
  margin-right: 6px;
}

/* Category */
.category-badge {
  display: inline-block;
  background: #d4a017;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Title */
.blog-title {
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #000;
}

/* Subtitle */
.blog-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 720px;
  margin-bottom: 32px;
}

/* Author */
.author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.author-meta img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.meta-divider {
  width: 1px;
  height: 24px;
  background: #e5e7eb;
  margin: 0 10px;
}

.meta-info {
  display: flex;
  gap: 20px;
  color: #64748b;
  font-size: 14px;
}

/* Share icons */
.share-vertical {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.share-vertical a,
.share-mobile a {
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  transition: 0.3s;
  text-decoration: none;
}

.share-vertical a:hover,
.share-mobile a:hover {
  background: #d4a017;
  color: #fff;
}

.share-mobile {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-title {
    font-size: 36px;
  }

  .blog-subtitle {
    font-size: 16px;
  } 
}

@media (max-width: 575px) {
  .blog-title {
    font-size: 30px;
  }

  .meta-divider {
    display: none;
  }
 
}


/* Blog Content */
.blog-content {
  padding: 60px 0 2px;
  background: #fff;
}

.featured-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin: 0px 168px 0px 90px;
}

.featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Caption */
.image-caption {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  color: #64748b;
  margin: 16px 0 40px;
}

/* Article Body */
.article-body {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #1e293b;
  text-align: left;
}

.article-body p {
  margin-bottom: 24px;
  font-family: 'Montserrat';
  line-height: 1.8;
  text-align: left;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-content {
    padding: 40px 0;
  }

  .article-body {
    font-size: 16px;
  }

  .featured-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); 
     margin: 0;
}
   
}

@media (max-width: 576px) {
  .image-caption {
    font-size: 13px;
  }
   .featured-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin: 0;
   
.featured-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); 
}
   
}
}


/* Insights Section */
.blog-insights {
  font-family: 'Montserrat';
  font-size: 12px;
}

.blog-insights .section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.blog-insights .section-text {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 28px;
}

/* Quote Box */
.quote-box {
  max-width: 760px;
  background: #fbf7ec;
  border-left: 4px solid #d4a017;
  padding: 26px 30px;
  margin: 40px 0;
  border-radius: 8px;
}

.quote-box p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 16px;
}

.quote-box span {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
}

/* Sub Heading */
.sub-heading {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 50px 0 20px;
}

/* Benefits List */
.benefits-list {
  max-width: 760px;
  padding-left: 0;
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 17px;
  color: #334155;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 28px;
  color: #d4a017;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-insights .section-heading {
    font-size: 26px;
  }

  .blog-insights .sub-heading {
    font-size: 22px;
  }

  .blog-insights .section-text,
  .quote-box p {
    font-size: 16px;
  }

   
} 

/* Author Section */
.blog-author-section {
  padding: 5px 0 0px;
  background: #fff;
}

/* Tags */
.blog-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tag-label {
  font-weight: 600;
  color: #475569;
}

.tag {
  padding: 10px 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.tag.active {
  background: #d4a017;
  color: #ffffff;
  border-color: #d4a017;
}

/* Author Card */
.author-card {
  display: flex;
  gap: 24px;
  background: #fbf7ec;
  border-radius: 20px;
  padding: 36px;
  align-items: flex-start;
}

.author-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d4a017;
}

.author-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.author-role {
  display: block;
  font-size: 16px;
  color: #d4a017;
  margin-bottom: 16px;
  font-weight: 500;
}

.author-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
  max-width: 720px;
}

/* Social Icons */
.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #ffffff;
  color: #475569;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #d4a017;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .author-content p {
    max-width: 100%;
  }
}

 


.relatedarticle {
  background: #f8f9fa;
}

.relatedarticle .relatedarticle-title {
  font-size: 32px;
  font-weight: 700;
}

.relatedarticle .view-all {
  color: #8b0000;
  font-weight: bolder;
  text-decoration: none;
  font-family: 'Montserrat';
}

.relatedarticle .view-all span {
  margin-left: 6px;
}

.relatedarticle .article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.relatedarticle .article-card:hover {
  transform: translateY(-5px);
}

.article-img {
  position: relative;
}

.relatedarticle .article-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.relatedarticle .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
}

.relatedarticle .badge-dark {
  background: #1a1a1a;
}

.relatedarticle .badge-red { 
  background: #9e0b0b;
}

.relatedarticle .badge-blue {
  background: #2b5dbb;
}

.relatedarticle .article-body {
  padding: 20px;
}

.relatedarticle .article-meta {
  font-size: 14px;
  color: #6c757d;
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.relatedarticle .article-body h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  height: 6vh;
}

.relatedarticle .article-body p {
  font-size: 15px;
  color: #0c1427;
}

.relatedarticle .article-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.relatedarticle .article-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
/* Small laptops / tablets landscape (≥900px) */
@media screen and (min-width: 1000px) {
  .relatedarticle {
    padding: 80px 80px;
  }
}


/* Small laptops / tablets landscape (≥900px) */
@media screen and (min-width: 1000px) {
  .blog-detail {
    padding: 180px 180px 0;
  }
}


.winnerpage {
  position: relative;
  min-height: 85vh;
  background: url("../pics/winnerbg.jpeg") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 10vh;
}

.winner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 12, 35, 0.95) 30%,
    rgba(10, 12, 35, 0.6) 60%,
    rgba(10, 12, 35, 0.2) 100%
  );
  z-index: 1;
}

.winnerpage .container {
  position: relative;
  z-index: 2;
}

.winner-breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
}

.winner-breadcrumb a {
  color: #bfc4ff;
  text-decoration: none;
}

.winner-breadcrumb span {
  margin: 0 6px;
}

.winner-breadcrumb .active {
  color: #f4c430;
}

.winner-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-title h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 0;
}

.trophy {
  font-size: 40px;
  color: #f4c430;
}

.winner-month {
  display: inline-block;
  background: #f4c430;
  color: #101224;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin: 20px 0;
}

.winner-desc {
  font-size: 18px;
  max-width: 600px;
  color: #d7d9ff;
}

.winner-stats {
  margin-top: 80px;
}

.winner-stats h3 {
  font-size: 36px;
  font-weight: 800;
  color: #f4c430;
}

.winner-stats p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cfd2ff;
}





/***/
.winner-tabs {
  background: #fafafa;
}

.winner-tabs .filter-btn {
  border: none;
  background: #f1f3f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.winner-tabs .filter-btn.active {
  background: #111827;
  color: #fff;
}

/* Card */
.winner-tabs .film-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.winner-tabs  .image-wrapper {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.winner-tabs .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-tabs .award {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 12px;
  color: #fff;
  background: #d4a024;
}

.winner-tabs.gold { background: #f4c430; color: #111; }
.winner-tabs .silver { background: #9ca3af; }
.winner-tabs .bronze { background: #cd7f32; }

.winner-tabs .category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 12px;
}

.winner-tabs .card-body {
  padding: 16px;
}

.winner-tabs .card-body h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.winner-tabs .card-body p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

.winner-tabs .meta {
  font-size: 12px;
  color: #999;
  font-family: 'Montserrat';
}



/* Responsive awardsection2*/


.custom-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card-title {
  font-weight: 700;
  margin-bottom: 20px;
}

/* Deadline items */
.deadline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
}

.deadline-item.active {
  border-color: #e0b100;
  background: #fffaf0;
}

.deadline-item h6 {
  margin: 0;
  font-weight: 700;
}

.deadline-item p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* Badges */
.badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.badge.open {
  background: #e0b100;
  color: #111;
}

.badge.upcoming {
  background: #e5e7eb;
  color: #374151;
}

/* Buttons */
.submit-btn1 {
  width: 100%;
  background: #8b0000;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
}

.submit-btn1:hover {
  background: #6f0000;
  color: #fff;
}

.archive-btn {
  width: 100%;
  background: #1f2233;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
}

.archive-btn:hover {
  background: #111827;
  color: #fff;
}

/* Archive list */
.archive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.archive-item h6 {
  margin: 0;
  font-weight: 700;
}

.archive-item p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.arrow {
  font-size: 22px;
  color: #9ca3af;
}


/* Section */
.winner-hero {
  padding: 180px 0px;
  background: linear-gradient(to right, rgb(25 25 45) 30%, rgb(26 26 45) 60%, rgb(26 26 46 / 99%) 100%);
}

/* Image Card */
.winner-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.winner-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #d4af37;
  color: #111;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.award-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
}

/* Content */
.winner-content {
}
.winner-content .label {
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.winner-content h1 {
  font-family: "Georgia", serif;
  font-size: 52px;
  margin-bottom: 14px;
  font-style: italic;
  color: #fff;
}

.film-title {
  margin-bottom: 24px;
  font-size: 18px;
  color: #d4af37;
}

blockquote {
  border-left: 3px solid #d4af37;
  padding-left: 20px;
  font-style: italic;
  color: #cbd5f5;
  margin-bottom: 32px;
}

/* Info Cards */
.info-boxes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.info-card {
  background: rgba(255,255,255,0.08);
  padding: 16px 20px;
  border-radius: 12px;
  min-width: 180px;
}

.info-card small {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 1px;
}

.info-card p {
  margin: 6px 0 0;
  font-size: 16px;
  color: #fff;
}

/* Button */
.watch-btn {
  background: #d4af37;
  color: #111;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
}

.watch-btn:hover {
  background: #bfa12f;
  color: #111;
}

/* Responsive */
@media (max-width: 992px) {
  .winner-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .winner-hero {
    padding: 50px 0;
  }

  .winner-content h1 {
    font-size: 34px;
  }
}








/* Section */
.aboutdirector {
  padding: 80px 20px;
}
 

/* Header */
.aboutdirector-header {
  text-align: center;
  margin-bottom: 60px;
}

.aboutdirector-header .eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.aboutdirector-header h2 {
  font-size: 40px;
  margin: 0;
}

/* Grid */
.aboutdirector-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

/* Bio Card */
.aboutdirector  .bio-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.aboutdirector  .bio-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.aboutdirector  .bio-section p {
  line-height: 1.7;
  color: #444;
  font-family: 'Montserrat';
}

.bio-card hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 32px 0;
}

/* Achievements Card */
.aboutdirector  .achievement-card {
  background: linear-gradient(180deg, #1c1f3a, #0f1225);
  color: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.aboutdirector  .achievement-card h3 {
  margin-bottom: 24px;
}

.aboutdirector  .achievement-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.aboutdirector  .achievement-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #e6e6e6;
}

.aboutdirector  .achievement-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* Meta */
.aboutdirector  .meta div {
  margin-bottom: 20px;
}

.aboutdirector  .meta span {
  display: block;
  font-size: 12px;
  color: #d4af37;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.aboutdirector  .meta p {
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .aboutdirector-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .aboutdirector-header h2 {
    font-size: 32px;
  }

  .aboutdirector  .bio-card,
  .achievement-card {
    padding: 28px;
  }
}
 



/* Section */
section.monthly-winners {
  padding: 80px 20px;
  background: #fff;
}

.mw-container {
  max-width: 1280px;
  margin: auto;
}

/* Header */
.mw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.mw-month {
  display: block;
  font-size: 18px;
  letter-spacing: 2px;
  color: #a34545;
  margin-bottom: 8px;
  font-family: monospace;
}

.mw-header h2 {
  font-size: 36px;
  margin: 0;
  color: #000;
  font-family: 'Montserrat';
  font-weight: bolder;
}

.view-all {
  font-size: 15px;
  color: #c9a227;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat';
  font-weight: bolder;
}

.view-all span {
  font-size: 18px;
}

/* Grid */
.mw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.winner-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.winner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.12);
}

.image-wrap {
  position: relative;
  height: 260px;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge */
.winner-card .badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Card body */
.card-body {
  padding: 20px 22px 24px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card-body p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Tablet */
@media (max-width: 992px) {
  .mw-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mw-header h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mw-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mw-grid {
    grid-template-columns: 1fr;
  }

  .image-wrap {
    height: 220px;
  }

  .mw-header h2 {
    font-size: 26px;
  }
}
