  .page-header {
    background: linear-gradient(135deg, #800000, #a52a2a); /* Maroon gradient */
    padding: 60px 0; /* Desktop padding */
  }
  .page-header h1 {
    font-weight: 700;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    color: #fff; /* Breadcrumb divider */
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }

  /* Mobile responsive padding */
  @media (max-width: 768px) {
    .page-header {
      padding: 40px 0;
    }
  }
  @media (max-width: 576px) {
    .page-header {
      padding: 30px 0;
    }
  }
  
 

.gallery-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
      background: #9C2020;
    color: #fff;
}
.gallery-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.gallery-box h5 {
  font-size: 1.1rem;
  margin-top: 16px !important;
}


 
  
  /* Floating CTA Icons */
.floating-icons {
  position: fixed;
  bottom: 20px;   /* bottom space */
  right: 20px;    /* right space */
  display: flex;
  flex-direction: column;
  gap: 12px;      /* space between icons */
  z-index: 9999;  /* high priority */
}

.floating-icons a img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.floating-icons a img:hover {
  transform: scale(1.08);
}

/* Mobile adjustments */
@media (max-width: 575px) {
  .floating-icons a img {
    width: 60px;
    height: 60px;
  }
  .floating-icons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
}




/* Extra small devices (mobile phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Mobile-specific CSS here */
  .navbar-brand img{
	height:57px;
  }
  
  .con11{
	padding-left:0px !important;
	padding-right:0px !important;
  }
  
  .mar10{
	margin-bottom:10px;
  }
  
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small devices / large phones */
  .navbar-brand img{
	height:57px;
  }
  
  .con11{
	padding-left:0px !important;
	padding-right:0px !important;
  }
  
  .mar10{
	margin-bottom:10px;
  }
  
  
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Tablets */
  .navbar-brand img{
	height:87px;
  }
  
  .con11{
	padding-left:15px !important;
	padding-right:15px !important;
  }
  
  .mar10{
	margin-bottom:5px;
  }
  
  
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Laptops / smaller desktops */
  .navbar-brand img{
	height:87px;
  }
  
  .con11{
	padding-left:15px !important;
	padding-right:15px !important;
  }
  
  .mar10{
	margin-bottom:5px;
  }
  
  
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* Large desktops */
  .navbar-brand img{
	height:87px;
  }
  .con11{
	padding-left:15px !important;
	padding-right:15px !important;
  }
  
  .mar10{
	margin-bottom:5px;
  }
  
}

/* Extra extra large devices (very large desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* XXL desktops */
  
  .navbar-brand img{
	height:87px;
  }
  
  .con11{
	padding-left:15px !important;
	padding-right:15px !important;
  }
  
  .mar10{
	margin-bottom:5px;
  }
  
}


  
  
    body {
      font-family: 'Poppins', sans-serif;
    }
    .custom-navbar {
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      background-color: #fff;
      padding: 0.6rem 1rem; 
    }
    .navbar-nav .nav-link {
      font-weight: 500; color:#B71510;
      margin: 0 0.5rem; font-weight:bold;
      transition: color 0.3s, transform 0.2s;
    }
    .navbar-nav .nav-link:hover {
      color: #ff6600;
      transform: translateY(-2px);
    }
    .dropdown-menu {
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      padding: 0.5rem 0;
      background-color: #fff;
    }
    .dropdown-item {
      transition: background 0.3s, color 0.3s;
    }
    .dropdown-item:hover {
      background-color: #ff6600;
      color: #fff;
    }
    .navbar-toggler {
      border: none;
    }
	
	/* Awards menu custom style */
.navbar-nav .nav-item.awards-link {
  position: relative;
  border-radius: 50px;
  background-color: #800000; /* Maroon background */
  overflow: hidden;
  transition: transform 0.3s;
}

.navbar-nav .nav-item.awards-link a.nav-link {
  color: #fff !important;
  font-weight: bold;
  padding-top:3px; padding-bottom:3px;
}

/* Hover animation - slight lift */
.navbar-nav .nav-item.awards-link:hover {
  transform: translateY(-2px);
}

/* Shine effect keyframes */
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Shine overlay */
.navbar-nav .nav-item.awards-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}









  
  /* About Section */
  .about-section {
    background:#FEF6DF;
    padding: 45px 0;
  }

  .about-text h2 {
    font-style: italic;
    font-weight: 700;
    font-size: 1.9rem;
    color: maroon;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
  }

  .btn-read-more {
    background: linear-gradient(90deg, maroon, #a00000);
    color: #fff;
    padding: 6px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-read-more:hover {
    background: linear-gradient(90deg, #a00000, maroon);
    transform: translateY(-2px);
  }

  .about-image {
    max-width: 100%;
    border-radius: 0px;
	border: 6px solid maroon;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .about-section {
      text-align: center;
    }
    .about-text h2 {
      font-size: 1.9rem;
    }
    .about-text p {
      font-size: 1rem;
    }
    .about-image {
      max-width: 100%;
    }
  }
  
  
  /* Parallax About Section */
  .about-section1 {
    padding: 45px 0;
    color: #fff;
    background: url('../image/parlexback.jpeg') no-repeat center center fixed; /* Parallax background */
    background-size: cover;
    position: relative;
    z-index: 1;
  }

  /* Black overlay */
  .about-section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* black overlay with opacity */
    z-index: 0;
  }

  /* Ensure content is above overlay */
  .about-section1 .container {
    position: relative;
    z-index: 1;
  }

  /* Rest of your existing styles remain the same */
  .about-text h2 {
    font-style: italic;
    font-weight: 700;
    font-size: 1.9rem;
    color: maroon;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
  }

  .btn-read-more {
    background: linear-gradient(90deg, maroon, #a00000);
    color: #fff;
    padding: 6px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-read-more:hover {
    background: linear-gradient(90deg, #a00000, maroon);
    transform: translateY(-2px);
  }

  /* About Box */
  .about-box {
    border: 2px solid #800000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease;
    background: linear-gradient(to bottom, #3b0000 0%, #800000 50%, #3b0000 100%);
  }

  .about-box:hover {
    transform: translateY(-5px);
  }

  .about-icon {
    font-size: 65px;
    color: #FFD700;
    margin-right: 15px;
    min-width: 70px;
    text-align: center;
  }

  .about-content h4 {
    margin: 0;
    font-weight: bold;
    color: #FFD700;
    font-size: 24px;
  }

  .about-content p {
    margin: 5px 0 0;
    color: #fff;
  }

  .about-desc {
    color: #fff; /* Changed to white for better visibility on dark overlay */
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .about-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #800000;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
  }

  .about-btn:hover {
    background-color: #FFD700;
    color: #000;
  }

  @media (max-width: 767px) {
    .about-box {
      display: block;
      text-align: center;
    }
    .about-icon {
      margin: 0 0 10px 0;
    }
  }
  
  
   .services-section { background-color: #FEF6DF; }
  .service-heading { font-size: 1.9rem; font-weight: 700; color: maroon; }
  .service-subheading { font-size: 1.1rem; color: #333; margin-top: 10px; }
  
  .slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }
  .slider-wrapper {
    overflow: hidden;
  }
  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .service-box {
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin: 10px;
    flex: 0 0 calc(33.333% - 20px); /* Desktop 3 boxes */
    box-sizing: border-box;
  }
  .service-image { max-height: 340px; margin-bottom: 15px; border-radius: 10px; object-fit: cover; }
  .service-title { font-size: 1.2rem; font-weight: 600; color: #333; }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: maroon;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
	    height: 43px;
    line-height: 23px;
  }
  .slider-btn.prev { left: 0; }
  .slider-btn.next { right: 0; }
  .slider-btn:hover { background-color: #800000; }

  @media (max-width: 991px) {
    .service-box { flex: 0 0 calc(50% - 20px); }
  }
  @media (max-width: 576px) {
    .service-box { flex: 0 0 100%; }
  }
  
  
  
.gallery-section{
	background:#FEF6DF;
}

  .gallery-heading {
    font-size: 1.9rem;
    font-weight: 700;
    color: maroon;
  }

  .gallery-subheading {
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
  }

  /* Film Frame Wrapper */
  .performance-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(to right, #800000, #686a76);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
  }

  .performance-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  /* Film Strip Holes (Top & Bottom) */
  .performance-frame::before,
  .performance-frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 9px;
    background: repeating-linear-gradient(
      to right,
      #fff 0,
      #fff 20px,
      transparent 20px,
      transparent 40px
    );
    z-index: 2;
  }

  .performance-frame::before { top: 0; }
  .performance-frame::after { bottom: 0; }

  /* Hover effect */
  .performance-frame:hover {
    transform: scale(1.05);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  }

  .about-btn {
    display: inline-block;
    background-color: maroon;
    color: #fff;
    padding: 6px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
  }

  .about-btn:hover {
    background-color: #800000;
  }

  @media (max-width: 576px) {
    .performance-frame img { height: 150px; }
  }
  
  
  .nmfooter-container {
  background: url('../image/backimage.png') center/cover no-repeat;
  color: #333;
  position: relative;
  font-family: Arial, sans-serif;
}
.nmfooter-overlay {
  
  padding: 40px 0;
}
.nmfooter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: maroon;
  margin-bottom: 15px;
}
.nmfooter-about p, .nmfooter-contact p, .nmfooter-link-list li a {
  color: #333;
  font-size: 0.95rem;
}
.nmfooter-link-list {
  list-style: none;
  padding: 0;
}
.nmfooter-link-list li {
  margin-bottom: 8px;
}
.nmfooter-link-list li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}
.nmfooter-link-list li a:hover {
  color: maroon;
}
.nmfooter-readmore {
  display: inline-block;
  margin-top: 10px;
  color: maroon;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid maroon;
  transition: all 0.3s;
}
.nmfooter-readmore:hover {
  color: #800000;
  border-bottom: 1px solid #800000;
}
.nmfooter-social a {
  color: maroon;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.nmfooter-social a:hover {
  color: #800000;
}
.nmfooter-bottom {
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.9rem;
}
.nmfooter-bottom a {
  color: #fff;
  text-decoration: none;
}
.nmfooter-bottom a:hover {
  color: #FFD700;
}
@media (max-width: 767px) {
  .nmfooter-title { font-size: 1.3rem; }
  .nmfooter-social a { font-size: 1rem; }
}