/* ------------------- 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 */
  }
}




  /*=============================== ================= PUNE POLITICS SECTION ============================ */
  
  .politics-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("https://plus.unsplash.com/premium_photo-1716933382288-97f8ae2d125e?q=80&w=1032&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  
  .politics-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Faint Overlay */
    background: linear-gradient(to bottom right, rgba(229,57,53,0.45), rgba(0,0,0,0.55));
    z-index: 1;
  }
  
  
  .politics-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 850px;
    padding: 20px;
  }
  
  .politics-hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease forwards;
  }
  
  .politics-hero h1 .highlight {
    color: #ff4c4c; /* bright red */
  }
  
  .politics-hero .tagline {
    font-size: 22px;
    font-weight: 400;
    color: #f5f5f5;
    margin-bottom: 25px;
    animation: fadeInUp 1.2s ease forwards;
  }
  
  /* Ticker */
  .ticker {
    background: rgba(0,0,0,0.6);
    border: 1px solid #e53935;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px auto;
    max-width: 700px;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .ticker-wrap {
    width: 100%;
    overflow: hidden;
  }
  
  .ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 18s linear infinite;
  }
  
  .ticker-move span {
    display: inline-block;
    padding: 0 40px;
    font-size: 16px;
    color: #fff;
  }
  
  /* CTA Button */
  .hero-btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    background: #e53935;
    color: #fff;
    box-shadow: 0 6px 15px rgba(229,57,53,0.4);
    transition: all 0.3s ease;
    margin-top: 15px;
    animation: fadeInUp 1.5s ease forwards;
  }
  
  .hero-btn:hover {
    background: #fff;
    color: #e53935;
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
  }
  
  /* Animations */
  @keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .politics-hero {
      height: 75vh;
      padding: 0 10px;
    }
    .politics-hero h1 {
      font-size: 38px;
    }
    .politics-hero .tagline {
      font-size: 16px;
    }
    .ticker {
      height: 36px;
    }
    .ticker-move span {
      font-size: 14px;
      padding: 0 25px;
    }
  }

  /* =========================================== ALL UPDATES SECTION =================================================== */
  
  
  .updates-section {
    background-color:#fff;
    padding:50px 20px;
  }
  
  .updates-header { 
    text-align:center; 
    margin-bottom:40px; 
  }
  .updates-header h2 { 
    font-size:32px; 
    color:#b83939; 
    margin-bottom:5px; 
  }
  .updates-header p { 
    font-size:16px; 
    color:#555; 
  }
  
  .updates-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
  }
  
  .update-card {
    background:#f5f5f5;
    border-radius:16px;       /* थोड़ी गोलाई बढ़ाई */
    overflow:hidden;
    text-align:center;
    cursor:pointer;
    transition:all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* हलकी shadow */
}

  
  .update-card:hover {
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
  }
  
  .update-card img { 
    width:100%; 
    height:180px; 
    object-fit:cover; 
  }
  
  .update-card h3 { 
    margin:15px 10px 10px; 
    color:#cb264c; 
    font-size:18px; 
  }
  
  .update-card .text-preview { 
    color:#1e88e5; 
    font-size:14px; 
    margin:0 10px 15px 10px; 
    overflow:hidden; 
    display:-webkit-box; 
    -webkit-line-clamp:2; 
    -webkit-box-orient:vertical;
  }
  
  .news-detail {
    display:none;
    padding:50px 20px;
    text-align:center;
    background-color:#f2eded;
  }
  
  .news-detail img { 
    max-width:60%; 
    border-radius:12px; 
    margin-bottom:20px; 
  }
  
  .news-detail h2 { 
    color:#bc2834; 
    margin-bottom:15px; 
  }
  
  .news-detail p { 
    font-size:16px; 
    line-height:1.6; 
    max-width:800px; 
    margin:auto; 
    text-align:justify; 
    color: #000;
  }
  
  #back-btn {
    margin-top:20px; 
    padding:10px 25px; 
    font-size:16px;
    background:#ca2828; 
    color:#fff; 
    border:none; 
    border-radius:8px; 
    cursor:pointer;
  }
  











  /* ====================================== POLITICS ACCORDION SECTION ================= */
  /* ================= POLITICS ACCORDION SECTION ================= */
.politics-accordion {
    background: #111;
    padding: 70px 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .accordion-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .accordion-header h2 {
    font-size: 34px;
    font-weight: 900;
    color: #e53935;
    letter-spacing: 1px;
  }
  
  .accordion-header p {
    font-size: 16px;
    color: #bbb;
  }
  
  /* Accordion Item */
  .accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(229,57,53,0.5);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease, transform 0.3s ease;
  }
  
  /* Hover effect */
  .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229,57,53,0.4);
    border-color: #e53935;
  }
  
  /* Accordion Button */
  .accordion-btn {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .accordion-btn:hover {
    color: #e53935;
  }
  
  .accordion-btn .icon {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  /* Accordion Content */
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.6);
    padding: 0 20px;
    transition: max-height 0.6s ease, padding 0.3s ease;
  }
  
  .accordion-content p {
    padding: 10px 0;
    color: #ddd;
    line-height: 1.7;
  }
  
  /* Active Accordion */
  .accordion-item.active .accordion-content {
    max-height: 500px; /* बड़े content के लिए जगह */
    padding: 15px 20px;
  }
  
  .accordion-item.active .accordion-btn .icon {
    transform: rotate(45deg);
    color: #e53935;
  }
  
  /* Mobile Responsive */
  @media (max-width: 600px) {
    .accordion-header h2 {
      font-size: 26px;
    }
    .accordion-btn {
      font-size: 16px;
      padding: 15px;
    }
    .accordion-btn .icon {
      font-size: 20px;
    }
    .accordion-content {
      padding: 0 15px;
    }
  }
  
    /* ---------------------------------------------politics section------------------------------------------------- */
   
    .politics-spotlight-text {
        position: relative;
        background: url('https://images.unsplash.com/photo-1706205274497-524be01920e8?q=80&w=387&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
      }
      
      .spotlight-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
      }
      
      .spotlight-content {
        position: relative;
        max-width: 800px;
        z-index: 2;
      }
      
      .spotlight-heading {
        font-size: 36px;
        font-weight: 900;
        color: #e53935; /* Red line style */
        border-bottom: 3px solid #e53935;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 25px;
        text-transform: uppercase;
      }
      
      .spotlight-content p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 35px;
        color: #fff;
      }
      
      .spotlight-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
      }
      
      .spotlight-buttons .btn {
        background: #e53935;
        color: #fff;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      
      .spotlight-buttons .btn:hover {
        background: #fff;
        color: #e53935;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(229,57,53,0.5);
      }
      
      /* Responsive */
      @media (max-width: 768px) {
        .spotlight-heading {
          font-size: 28px;
        }
        .spotlight-content p {
          font-size: 16px;
        }
        .spotlight-buttons .btn {
          padding: 10px 20px;
          font-size: 14px;
        }
      }



       /*------------------------------------- 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 */
    }
}
      