/* ------------------- GLOBAL RESET ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #111;
    color: #fff;
  }
  
  /* ------------------- NAVBAR ------------------- */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    transition: background 0.3s ease;
  }
  
  .navbar.scrolled {
    background: #000;
  }
  
  .navbar .logo img {
    height: 110px;
  }
  
  /* ------------------- NAV LINKS ------------------- */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links li a {
    color: #100f0f;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
  }
  
  /* Smooth underline */
  .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #e50914;
    transition: width 0.3s ease;
  }
  
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 100%;
  }
  
  /* ------------------- SUBSCRIBE BUTTON ------------------- */
  .subscribe-btn {
    background: #e50914;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .subscribe-btn:hover {
    background: #c62828;
    transform: scale(1.05);
  }
  
  /* ------------------- HAMBURGER (MOBILE) ------------------- */
  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    z-index: 1100;
  }
  
  /* ------------------- MOBILE MENU ------------------- */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
    }
     
    @media (max-width: 768px) {
      .navbar .logo {
        order: 1;              
        flex: 1;               
        display: flex;
        align-items: center;
        margin-left: -20px; 
      }
    }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      flex-direction: column;
      background: #fff;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      text-align: center;
      z-index: 1000;
    }
  
    .nav-links.open {
      max-height: 100vh;   /* ✅ unlimited height so all links show */
      padding: 20px 0;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  
    .nav-links li a {
      color: #000; /* Black text in mobile menu */
    }
  }




 
  
  /* ✅------------------------------------------ Hero Section ---------------------------------------------*/
 
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: #000; /* fallback if video not loads */
  }
  
  /* Background Video */
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%) contrast(110%);
  }
  
  /* Overlay */
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
  }
  
  /* Content */
  .hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  /* Heading (Plain Red, no shadow) */
  .hero-content h1 {
    font-size: 3.2rem;
    color: #ff1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: slideDown 1s ease forwards;
  }
  
  /* Sub-text */
  .hero-content p {
    font-size: 1.3rem;
    margin: 20px 0 30px;
    color: #f0f0f0;
    max-width: 650px;
    line-height: 1.7;
    opacity: 0;
    animation: slideDown 1s ease forwards;
    animation-delay: 0.4s;
  }
  
  

/* Stylish Button */
.hero-content button {
    background: transparent;
    border: 2px solid #ff1a1a;
    padding: 14px 34px;
    color: #ff1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 26, 26, 0.6);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.3);
    position: relative;
    overflow: hidden;
  }
 
/* Button hover: neon glow + fill effect */
.hero-content button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff1a1a, #990000);
    transition: 0.4s ease;
    z-index: -1;
  }
  
  .hero-content button:hover::before {
    left: 0;
  }
  
  .hero-content button:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 26, 26, 0.7);
    text-shadow: 0 0 12px #fff;
  }
  
  
  /* Slide-in Animation from Top */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.2rem;
      letter-spacing: 1px;
    }
    .hero-content p {
      font-size: 1rem;
      padding: 0 10px;
    }
    .hero-content button {
      font-size: 0.95rem;
      padding: 10px 22px;
    }
  }





  

  
  /*--------------------------------------------------------------------------- Section--------------------------------------------------------------------------------- */
  .ent-news {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0eaea, #efe7e7);
    text-align: center;
  }
  
  .ent-news h2 {
    font-size: 2.5rem;
    color: #ff1a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
  }
  
  .ent-news h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #ff1a1a;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
  }
  
  /* Grid */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Card */
  .news-card {
    background: #1c1c1c;
    border: 1px solid #ff1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  }
  
  .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  
  .news-content {
    padding: 20px;
    text-align: left;
  }
  
  .news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .news-content p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  /* Button */
  .news-content a {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #ff1a1a;
    border-radius: 6px;
    color: #ff1a1a;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
  }
  
  .news-content a:hover {
    background: #ff1a1a;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  }


  /* Extra Info (Hidden by default) */
.extra-info {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 26, 26, 0.05);
    border-left: 3px solid #ff1a1a;
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 6px;
  }
  



    /*------------------------------------------------------------------------ flip flop section---------------------------------------------------------------- */

    .ent-marquee {
        background: #111;
        padding: 60px 20px;
        text-align: center;
        font-family: 'Poppins', sans-serif;
      }
      
      .ent-marquee h2 {
        font-size: 2.5rem;
        color: #ff1a1a;
        margin-bottom: 40px;
        position: relative;
        display: inline-block;
      }
      
      .ent-marquee h2::after {
        content: "";
        width: 60%;
        height: 3px;
        background: #ff1a1a;
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
      }
      
      /* Marquee Wrapper */
      .marquee-wrapper {
        overflow: hidden;
        width: 100%;
      }
      
      .marquee {
        display: flex;
        gap: 30px;
        animation: marquee 8s linear infinite;
      }
      
      .marquee-card {
        min-width: 300px;
        background: #1c1c1c;
        border: 1px solid #ff1a1a;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .marquee-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255,0,0,0.5);
      }
      
      .marquee-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      
      .marquee-card h3 {
        color: #ff1a1a;
        font-size: 1.3rem;
        margin: 12px;
      }
      
      .marquee-card p {
        color: #ddd;
        font-size: 0.95rem;
        margin: 0 12px 12px;
        line-height: 1.5;
      }
      
      /* Continuous Scroll Animation */
      @keyframes marquee {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      
      /* Responsive */
      @media (max-width: 1024px) {
        .marquee-card {
          min-width: 260px;
        }
      }
      
      @media (max-width: 768px) {
        .marquee-card {
          min-width: 220px;
        }
        .marquee-card img {
          height: 150px;
        }
        .marquee-card h3 {
          font-size: 1.1rem;
        }
        .marquee-card p {
          font-size: 0.85rem;
        }
      }
      
      @media (max-width: 480px) {
        .marquee-card {
          min-width: 180px;
        }
        .marquee-card img {
          height: 120px;
        }
        .marquee-card h3 {
          font-size: 1rem;
        }
        .marquee-card p {
          font-size: 0.8rem;
        }
      }



      /*------------------------------------- footer----------------------------------------------------- */

  

 /* Import Google Font */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

 /* ===== Footer Wrapper ===== */
 .site-footer {
     background-color: #ffffff;
     color: #333333;
     font-family: 'Montserrat', sans-serif;
     padding: 50px 20px 20px;
     box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
 }
 
 /* ===== Footer Container ===== */
 .footer-container {
     max-width: 1200px;
     margin: auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
 }
 
 /* ===== Columns ===== */
 .footer-column {
     flex: 1 1 200px;
     min-width: 200px;
     margin-bottom: 20px;
 }
 
 /* ===== Logo & Tagline ===== */
 .footer-logo {
     height: 70px;
     margin-bottom: 10px;
 }
 
 .tagline {
     font-size: 16px; /* Increased from 14px */
     margin-bottom: 15px;
     color: #666666;
     line-height: 1.5;
 }
 
 /* ===== Section Headings ===== */
 .footer-column h3 {
     font-size: 18px; /* Increased from 16px */
     font-weight: 600;
     color: #111111;
     margin: 0 0 15px 0;
     position: relative;
     padding-bottom: 8px;
     display: inline-block;
 }
 
 .footer-column h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background-color: #D72638;
 }
 
 /* ===== Links ===== */
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 
 .footer-links li {
     margin-bottom: 12px; /* Increased from 10px */
 }
 
 .footer-links a {
     color: #444444;
     text-decoration: none;
     font-size: 16px; /* Increased from 14px */
     transition: color 0.3s ease;
 }
 
 .footer-links a:hover {
     color: #D72638;
 }
 
 /* ===== Social Icons ===== */
 .social-icons {
     display: flex;
     justify-content: flex-start;
     gap: 15px;
     margin-top: 20px;
 }
 
 .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #eeeeee;
     color: #D72638;
     border: 1px solid #dddddd;
     transition: background-color 0.3s ease, color 0.3s ease;
 }
 
 .social-icons a:hover {
     background-color: #D72638;
     color: #ffffff;
 }
 
 .social-icons .social-icon {
     width: 20px;
     height: 20px;
 }
 
 /* ===== Subscribe Button ===== */
 .subscribe-btn {
     display: inline-block;
     background-color: #D72638;
     color: #fff;
     padding: 12px 24px; /* Increased padding */
     border-radius: 5px;
     font-size: 16px; /* Increased from 14px */
     font-weight: 500;
     text-decoration: none;
     text-align: center;
     transition: background-color 0.3s ease;
     margin-top: 15px;
 }
 
 .subscribe-btn:hover {
     background-color: #a51928;
 }
 
 /* ===== Footer Bottom ===== */
 .footer-bottom {
     text-align: center;
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid #e0e0e0;
 }
 
 .footer-bottom p {
     margin: 0;
     font-size: 16px; /* Increased from 13px */
     color: #888888;
 }
 
 /* ===== Mobile Responsive ===== */
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         text-align: center;
         align-items: center;
         gap: 30px;
     }
 
     .footer-column {
         flex: 1 1 100%;
         min-width: unset;
         margin-bottom: 0;
     }
 
     .footer-column h3::after {
         left: 50%;
         transform: translateX(-50%);
     }
 
     .footer-social {
         width: 100%;
         text-align: center;
     }
 
     .footer-social .social-icons {
         justify-content: center;
         margin-top: 10px;
         margin-bottom: 10px;
     }
 
     .footer-social .subscribe-btn {
         display: block;
         margin: 0 auto;
         max-width: 220px; /* Adjusted max width */
         font-size: 16px; /* Increased font size for mobile button */
     }
 }
       




      