/* Blog Styling - Matching Website Theme */
.blogs-body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: Arial, sans-serif !important;
    background: #000 !important;
    color: #fff !important;
    line-height: 1.6 !important;
    min-height: 100vh !important;
    position: relative;
    z-index: 1;
  }
  
  .blogs-h1, .blogs-h2, .blogs-h3 {
    color: #ff2491;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 36, 145, 0.3);
  }
  
  .blogs-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ff2491;
    font-weight: 800;
    line-height: 1.2;
  }
  
  .blogs-h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    margin-bottom: 30px;
  }
  
  .blogs-h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff2491, #ff5ab3);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 36, 145, 0.5);
  }
  
  .blogs-h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #ff5ab3;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .blogs-p, .blogs-ul {
    color: #e0e0e0;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .blogs-ul {
    list-style: none;
    padding-left: 0;
  }
  
  .blogs-ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
  }
  
  .blogs-ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #ff2491;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  /* Hero Section - More Visible Image */
  .blogs-hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0015 50%, #0a0a0a 100%);
  }
  
  .blogs-hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.3);
    z-index: 1;
    transition: all 1.5s ease;
  }
  
  .blogs-hero-section:hover img {
    transform: scale(1.08);
    filter: brightness(0.7) saturate(1.4);
  }
  
  .blogs-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg, 
      rgba(10,10,10,0.4) 0%, 
      rgba(26,0,21,0.3) 30%, 
      rgba(255,36,145,0.1) 70%, 
      rgba(10,10,10,0.5) 100%
    );
    z-index: 2;
  }
  
  .blogs-hero-text-content {
    max-width: 800px;
    padding: 40px 20px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
  }
  
  .blogs-hero-text-content .blogs-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(255,36,145,0.9), 0 0 50px rgba(255,36,145,0.5);
    font-weight: 800;
    line-height: 1.2;
    margin-top: 20px;
    /* animation: blogsGlow 2.5s infinite alternate; */
  }
  
  .blogs-hero-text-content .blogs-p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #f0f0f0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    max-width: 600px;
    margin: 0 auto;
  }

  @keyframes blogsGlow {
    0% { text-shadow: 0 0 25px rgba(255,36,145,0.8), 0 0 50px rgba(255,36,145,0.4);}
    100% { text-shadow: 0 0 35px rgba(255,36,145,1), 0 0 70px rgba(255,36,145,0.6);}
  }
  
  .blogs-hero-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #ff2491, #ff5ab3);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255,36,145,0.5);
    transition: 0.4s;
  }
  
  .blogs-hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255,36,145,0.7);
  }
  
  /* Animations */
  @keyframes blogsFadeSlide {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes blogsNeonGlow {
    0% { text-shadow: 0 0 10px #ff2491, 0 0 20px #ff5ab3; }
    100% { text-shadow: 0 0 25px #ff2491, 0 0 50px #ff5ab3; }
  }
  
  /* Section */
  .blogs-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
  }
  
  .blogs-section-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,36,145,0.2);
    box-shadow: 
      0 20px 40px rgba(0,0,0,0.8),
      0 0 0 1px rgba(255,36,145,0.1),
      inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
  }
  
  
  .blogs-section-inner.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .blogs-img {
    width: 100%;
    max-width: 700px;
    height: 400px;
    display: block;
    margin: 40px auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.6),
      0 0 0 1px rgba(255,36,145,0.2);
    transition: all 0.5s ease;
  }
  
  .blogs-img:hover {
    transform: scale(1.02);
    box-shadow: 
      0 20px 45px rgba(0,0,0,0.8),
      0 0 0 1px rgba(255,36,145,0.4);
  }

  /* Enhanced Image Containers */
  .blogs-image-container {
    margin: 40px 0;
    text-align: center;
    position: relative;
  }

  .blogs-main-image-container {
    margin: 50px 0;
    text-align: center;
    position: relative;
  }

  .blogs-main-img {
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }

  .blogs-section-wrapper {
    margin-bottom: 60px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 36, 145, 0.1);
  }

  .blogs-section-wrapper:last-of-type {
    border-bottom: none;
  }
  
  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  
  /* FAQ Section - Dark Theme */
  .blogs-faq-card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,36,145,0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }
  
  .blogs-faq-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .blogs-faq-card:hover {
    border-color: rgba(255,36,145,0.4);
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  }
  
  .blogs-faq-header-card {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ff2491;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .blogs-faq-header-card:hover {
    background: rgba(255,36,145,0.05);
    color: #ff5ab3;
  }
  
  .blogs-faq-header-card span {
    transition: all 0.4s ease;
    font-size: 1.5rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,36,145,0.1);
  }
  
  .blogs-faq-card.active .blogs-faq-header-card span {
    transform: rotate(45deg);
    background: rgba(255,36,145,0.2);
  }
  
  .blogs-faq-content-card {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #e0e0e0;
    transition: all 0.5s ease;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .blogs-faq-card.active .blogs-faq-content-card {
    max-height: 500px;
    padding: 20px 30px 30px;
  }
  /* Responsive Design */
  @media (max-width: 768px) {
    .blogs-hero-section {
      height: 60vh;
      min-height: 500px;
    }
    
    .blogs-hero-text-content {
      padding: 30px 15px;
    }
    
    .blogs-hero-text-content .blogs-h1 {
      font-size: clamp(2rem, 8vw, 3rem);
      margin-bottom: 20px;
    }
    
    .blogs-hero-text-content .blogs-p {
      font-size: clamp(1rem, 4vw, 1.2rem);
      margin-bottom: 30px;
    }
    
    .blogs-section-inner {
      padding: 30px 20px;
      margin: 0 10px;
    }
    
    .blogs-h2 {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .blogs-p {
      font-size: 1rem;
    }
    
    .blogs-img {
      height: 250px;
      margin: 30px auto;
    }
    
    .blogs-faq-header-card {
      padding: 20px 15px;
      font-size: 1rem;
    }
    
    .blogs-faq-content-card {
      padding: 0 15px;
    }
    
    .blogs-faq-card.active .blogs-faq-content-card {
      padding: 15px 15px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .blogs-page-section {
      padding: 40px 10px;
    }
    
    .blogs-section-inner {
      padding: 25px 15px;
      border-radius: 16px;
    }
    
    .blogs-hero-section {
      height: 70vh;
      min-height: 400px;
    }
  }
  
  /* Scroll animations */
  .blogs-section-inner {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .blogs-faq-card {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Custom scrollbar */
  .blogs-body::-webkit-scrollbar {
    width: 8px;
  }
  
  .blogs-body::-webkit-scrollbar-track {
    background: #1a1a1a;
  }
  
  .blogs-body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff2491, #ff5ab3);
    border-radius: 4px;
  }
  
  .blogs-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5ab3, #ff2491);
  }

  /* Override any conflicting styles */
  .blogs-body * {
    box-sizing: border-box;
  }
  
  .blogs-body .blogs-h1,
  .blogs-body .blogs-h2,
  .blogs-body .blogs-h3 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  .blogs-body .blogs-p {
    margin-top: 0;
    margin-bottom: 25px;
  }
  
  /* Ensure proper spacing and layout */
  .blogs-body .blogs-page-section {
    margin: 0 auto;
    padding: 80px 20px;
  }
  
  .blogs-body .blogs-section-inner {
    margin: 0 auto;
    max-width: 900px;
  }