/* ------------------- 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 */
.finance-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 80px;
    background: linear-gradient(135deg, #000000, #1a0000, #330000);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
  }
  
  /* Decorative glow */
  .finance-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,0,0,0.6), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
  }
  .finance-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,0,0,0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
  }
  
  /* ---------- LEFT CONTENT ---------- */
  .finance-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    margin-top: 60px;
  
    /* Animation */
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s ease forwards;
    animation-delay: 0.3s;
  }
  
  .finance-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  
    opacity: 0;
    transform: translateY(-40px);
    animation: slideDown 1s ease forwards;
    animation-delay: 0.5s;
  }
  .finance-content h1 span {
    color: #ff0000;
  }
  
  .finance-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-40px);
    animation: slideDown 1s ease forwards;
    animation-delay: 0.8s;
  }
  
  .finance-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ff0000;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255,0,0,0.5);
  
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 1s ease forwards;
    animation-delay: 1.1s;
  }
  .finance-btn:hover {
    background: #fff;
    color: #ff0000;
    box-shadow: 0 0 30px rgba(255,0,0,0.8);
  }
  
  /* ---------- RIGHT IMAGE ---------- */
  .finance-image {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 2;
    margin-left: 60px;
  
    /* Animation */
    opacity: 0;
    transform: translateX(80px);
    animation: slideRight 1.2s ease forwards;
    animation-delay: 1s;
  }
  
  .finance-image img {
    width: 100%;
    max-width: 800px;
    height: 60vh;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
  }
  .finance-image img:hover {
    transform: scale(1.05);
  }
  
  /* ---------- ANIMATIONS ---------- */
  @keyframes slideDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 992px) {
    .finance-hero {
      flex-direction: column;
      text-align: center;
      padding: 80px 6% 60px;
    }
    .finance-content {
      max-width: 100%;
    }
    .finance-image {
      margin: 50px 0 0;
    }
  }




  /* ------------------------------------- Finance News Section -------------------------------------------------------- */
  
 
  
  .finance-news {
    padding: 80px 8%;
    background: linear-gradient(#ffffff);
  }
  
  .finance-news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: #ff1a1a;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(255,0,0,0.6);
  }
  
  /* Grid */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
  }
  
  /* Glassmorphic Cards */
  .news-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,0,0,0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(255,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,0,0,0.5);
  }
  
  .news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1b1818;
  }
  
  .news-content p {
    font-size: 1rem;
    color: #151313;
    line-height: 1.5;
  }
  
  /* Image with glow */
  .news-img {
    margin-top: 20px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
  }
  
  .news-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .news-card:hover .news-img img {
    transform: scale(1.08);
  }
  
  /* Responsive */
  @media(max-width: 768px) {
    .finance-news h2 {
      font-size: 2rem;
    }
    .news-img img {
      height: 180px;
    }
  }
  
  @media(max-width: 480px) {
    .finance-news {
      padding: 60px 6%;
    }
    .news-img img {
      height: 160px;
    }
  }




     /*================================================================ finannce ticker======================================================================== */
     /* Moving Ticker Section */
.finance-ticker {
    background: #000;
    padding: 25px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,0,0,0.3);
    border-bottom: 1px solid rgba(255,0,0,0.3);
  }
  
  .ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .ticker {
    display: flex;
    gap: 50px;
    animation: tickerMove 25s linear infinite;
    white-space: nowrap;
  }
  
  .ticker span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255,0,0,0.1);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,0,0,0.4);
    box-shadow: 0 0 12px rgba(255,0,0,0.4);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .ticker span:hover {
    transform: scale(1.1);
    background: rgba(255,0,0,0.3);
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
  }
  
  /* Animation */
  @keyframes tickerMove {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  /* Responsive */
  @media(max-width: 768px) {
    .ticker span {
      font-size: 1rem;
      padding: 6px 14px;
    }
  }
  
  @media(max-width: 480px) {
    .ticker span {
      font-size: 0.9rem;
      padding: 5px 10px;
    }
  }



    /* ----------------------------------------------------------section------------------------------------------------------------- */
   
  
   /* ---------------- Finance Section ---------------- */
.finance-section {
  width: 100%;
  background: #111; /* Black background */
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.finance-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.finance-left {
  flex: 1 1 400px;
}

.finance-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e50914; /* Red highlight */
}

.finance-left p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ccc;
}

.finance-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2rem;
  color: #e50914; /* Red counters */
  margin-bottom: 5px;
}

.stat p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Right Video */
.finance-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.finance-video {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(229,9,20,0.6);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .finance-container {
    flex-direction: column;
    align-items: center;
  }

  .finance-right {
    margin-top: 40px;
  }
}



 /*------------------------------------- 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 */
     }
 }
       



