/* ------------------- 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 ------------------- -----------------------------*/

.news-topic {
  padding: 10px 20px 20px 20px;
  text-align: center;
  margin-top: 100px; /* reduced top margin */
}

.news-topic h2 {
  font-size: 30px;
  color: #e53935; /* bright red */
  font-weight: bold;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.news-topic h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d1d3d7; /* blue underline */
  margin: 8px auto 0;
  border-radius: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}


.news-content p {
  font-size: 14px;
  color: #0d47a1;
}

.news-card .news-content h3{
  color: red;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}


.news-detail {
  display: none; /* hidden initially */
  max-width: 900px;
  margin: 20px auto 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.news-detail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  margin-top: 100px;
}

.news-detail h1 {
  color: #e53935;
  margin-bottom: 10px;
  font-size: 24px;
}

.news-detail p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}


#back-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background-color: #b52929;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

#back-btn:hover {
  background-color: #aa2828;
}




      /* -----------------------------------latest news------------------------------------------------------------ */

/* ------------------- NEWS SECTION ------------------- */
.news-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
  position: relative;
}

/* ---------- HEADING ---------- */
.news-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #d32f2f;
  display: inline-block;
  position: relative;
}

.news-header p {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}

/* ---------- NEWS ROW (Grid instead of moving) ---------- */
.news-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* ---------- NEWS CARDS ---------- */
.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card .meta {
  padding: 15px;
}

.news-card .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #d32f2f;
}

.news-card .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ---------- READ MORE ---------- */
.news-card .more-text {
  display: none; /* Hidden by default */
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #d32f2f;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #a82828;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .news-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .news-header h2 {
    font-size: 30px;
  }
  .news-header p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .news-header h2 {
    font-size: 26px;
  }
  .news-header p {
    font-size: 16px;
  }
  .read-more-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}


    /* ---------------------------------------------------------new- Section------------------------------------------------------------------------------- */


    .news-sections {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }
    
    .news-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .news-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #e50914;
    }
    
    .news-header p {
      font-size: 16px;
      color: #444;
      margin-top: 5px;
    }
    
    .news-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
    }
    
    .news-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
      cursor: pointer;
    }
    
    .news-card:hover {
      transform: translateY(-5px);
    }
    
    .news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    
    .news-card .meta {
      padding: 15px;
    }
    
    .news-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #222;
    }
    
    /* default truncated */
    .news-card .desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;  
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: pointer;
      color: blue;   /* blue link look */
      text-decoration: underline;
    }
    
    /* expanded full text */
    .news-card.expanded .desc {
      -webkit-line-clamp: unset;
      overflow: visible;
      text-decoration: none;
      color: #444;
    }
    


















      /*------------------------ News 2 Section------------------------------------------------ */
     
.spotlight-section {
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  
}
:root {
  --accent: #e50914;   /* Red */
  --dark: #111;        /* Black */
  --light: #fff;       /* White */
  --muted: #aaa;
  --card-bg: #1a1a1a;
  --max-width: 1200px;
}

.spotlight-heading {
  font-size: 2rem;
 margin-bottom: 10px; 
  font-weight: 800;
  color: #b0060f;
}

.spotlight-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.spotlight-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.spotlight-item {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.spotlight-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}

.spotlight-text h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #ffeb3b;
}

.spotlight-text p {
  font-size: 0.95rem;
  color: #ddd;
}

.spotlight-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: 0.3s;
}

.spotlight-btn:hover {
  background: rgba(255,255,255,0.5);
}

.spotlight-btn.left { left: 15px; }
.spotlight-btn.right { right: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .spotlight-item img {
    height: 250px;
  }
  .spotlight-text h3 {
    font-size: 1rem;
  }
  .spotlight-text p {
    font-size: 0.85rem;
  }
}

    




























































































  /*------------------------------------- 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 */
    }
}