/* News overlay styling for dates */
.news-overlay {
   position: absolute;
   top: 32px;
   right: 32px;
   z-index: 10;
}

/* Typography improvements */
p{
   font-size: 1.8rem;
   line-height: 1.9;
   letter-spacing: 0.01em;
   margin-bottom: 28px;
}

h2 {
   font-size: 3.5rem;
   line-height: 1.3;
   letter-spacing: -0.02em;
   margin-bottom: 24px;
   margin-top: 48px;
}

h3 {
   font-size: 2.3rem;
   line-height: 1.4;
   letter-spacing: -0.01em;
   margin-bottom: 20px;
   margin-top: 40px;
}

h4 {
   font-size: 2rem;
   line-height: 1.4;
   letter-spacing: -0.01em;
   margin-bottom: 18px;
   margin-top: 36px;
}

/* Enhanced list styles */
ul.liststyleblock{
   margin: 35px 0 35px 0;
   padding: 0;
   list-style: none;
   position: relative;
}

ul.liststyleblock li{
  padding: 20px 0 20px 40px;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  border-left: 2px solid transparent;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
  margin-bottom: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

ul.liststyleblock li:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15) 0%, transparent 100%);
  border-left-color: rgba(59, 130, 246, 0.6);
  transform: translateX(4px);
}

ul.liststyleblock li::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 28px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #06B6D4);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Loading animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    transform: translateX(-100%);
    animation: loading 3s ease-in-out;
    z-index: 9999;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.4rem;
    font-weight: 800;
     
    margin-bottom: 30px;
    background: linear-gradient(50deg, #714dff, #9c83ff 31.28%, #e151ff 77.97%, #fff759 95.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Inline quotes within paragraphs */
.quote-text{
    font-size: 1.95rem;
    font-style: italic;
    line-height: 1.75;
    margin: 45px 0;
    padding: 30px 40px 30px 50px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(6, 182, 212, 0.05) 100%);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #3B82F6, #06B6D4) 1;
    border-radius: 0 8px 8px 0;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: 15px;
    top: 18px;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
    font-style: normal;
}

/* Support for standard blockquote elements */
blockquote {
    font-size: 1.95rem;
    font-style: italic;
    line-height: 1.75;
    margin: 45px 0;
    padding: 30px 40px 30px 50px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(6, 182, 212, 0.05) 100%);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #3B82F6, #06B6D4) 1;
    border-radius: 0 8px 8px 0;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 15px;
    top: 18px;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
    font-style: normal;
}

blockquote p {
    margin: 0;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.5rem;
}

.hero-image {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-image img,
.hero-image video {
    max-width: 100%;
    border-radius: 20px;
    width: auto;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(59, 130, 246, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-image img:hover,
.hero-image video:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(59, 130, 246, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin-top: 50px;
    padding: 35px 0 0 0;
    position: relative;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.5) 50%, 
        transparent 100%);
}

/* Problem Section - Main Article Body */
.problem-section {
    padding: 0px 0 80px;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.problem-section > .container {
    position: relative;
    z-index: 1;
}

/* Article content paragraphs with enhanced readability */
.problem-section .section-description {
    position: relative;
    padding-left: 3px;
    transition: all 0.3s ease;
}

.problem-section .section-description:hover {
    padding-left: 8px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.section-description {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin-bottom: 32px;
    position: relative;
}

/* First paragraph emphasis */
.problem-section .section-description:first-of-type {
    font-size: 1.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    padding: 25px 0;
    position: relative;
}

.problem-section .section-description:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 50%, 
        transparent 100%);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
}

.challenge-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
}

.challenge-card h3 {
    
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.challenge-card p {
    
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Quote Section - Standalone Quote Boxes */
.quote-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
}

.quote-container {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.06) 0%, 
        rgba(6, 182, 212, 0.06) 100%);
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 55px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
}

.quote-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.4), 
        rgba(6, 182, 212, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.quote-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.quote-container:hover::after {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.6), 
        rgba(6, 182, 212, 0.6));
}

.quote-container.visible {
    animation: quoteSlideIn 0.8s ease-out;
}

@keyframes quoteSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

 .hero-image.newsdetail-banner{
    position: relative;
  height: auto;
    overflow: hidden;
    padding: 10px;
 }

 .hero-image.newsdetail-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Ye add karo - image ko top se crop karega */
    transition: transform 0.3s ease;
    border-radius: 6px;
 }

.quote-author {
    font-size: 1.5rem;
    background: linear-gradient(119deg, #BC8BC5 49%, rgb(224, 80, 255) 197%) 0% 0%/100% 100% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
   
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(5px);
}

/* Solution Section */
.solution-section {
    padding: 90px 0;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 50%, 
        transparent 100%);
}

.solution-header {
    margin-bottom: 55px;
}

.solution-title {
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(50deg, #714dff, #9c83ff 31.28%, #e151ff 77.97%, #fff759 95.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 18px;
}

 

 

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD, #98D8C8);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.3),
        4px 4px 0px rgba(0,0,0,0.2),
        6px 6px 0px rgba(0,0,0,0.1);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(15deg);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.5))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: gradientShift 1s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.feature-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Video Section */
.video-section {
    padding: 90px 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 50%, 
        transparent 100%);
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
}

.video-container video,
.video-container img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Impact Section */
.impact-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
}

.impact-header {
    text-align: center;
    margin-bottom: 65px;
    position: relative;
    z-index: 1;
}

.impact-title {
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(50deg, #714dff, #9c83ff 31.28%, #e151ff 77.97%, #fff759 95.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.6rem;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
}

.impact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD, #98D8C8);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.3),
        4px 4px 0px rgba(0,0,0,0.2),
        6px 6px 0px rgba(0,0,0,0.1);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.impact-card:hover .impact-icon {
    transform: scale(1.2) rotateY(-15deg);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.5))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: gradientShift 1s ease-in-out infinite;
}

.impact-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.impact-card p {
    
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Conclusion Section */
.conclusion-section {
    padding: 90px 0;
    position: relative;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 50%, 
        transparent 100%);
}

.conclusion-text {
    font-size: 1.85rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding: 35px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.04) 0%, 
        rgba(6, 182, 212, 0.04) 100%);
    border-radius: 16px;
    position: relative;
}

.conclusion-text::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2), 
        rgba(6, 182, 212, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Related Blogs */
.related-section {
    padding: 90px 0 100px;
    position: relative;
}

.related-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 50%, 
        transparent 100%);
}

.related-header {
    margin-bottom: 60px;
}

.related-title {
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.school-security-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.school-security-placeholder::before {
    content: '🏫';
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.social-media-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.social-media-placeholder::before {
    content: '📱';
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.oil-gas-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.oil-gas-placeholder::before {
    content: '🏭';
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.image-overlay i {
    font-size: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.blog-card:hover .blog-image-placeholder {
    transform: scale(1.1);
}

.blog-card:hover .image-overlay {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.blog-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    
   background: linear-gradient(119deg, #BC8BC5 49%, rgb(224, 80, 255) 197%) 0% 0%/100% 100% no-repeat padding-box;
   -webkit-background-clip: text;
    color: transparent;
    padding: 6px 0px;
     
    
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
   
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-link {
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    font-size:1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(5px);
}

/* Additional styling for h2 within article body */
.problem-section h2 {
    position: relative;
    padding-bottom: 16px;
    margin-top: 60px;
}

.problem-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    border-radius: 2px;
}

/* Additional styling for h3, h4 within article body */
.problem-section h3,
.problem-section h4 {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 15px;
}

.problem-section h3::before,
.problem-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #3B82F6, #06B6D4);
    border-radius: 2px;
}

/* Improve spacing for content within article */
.problem-section p + h2,
.problem-section p + h3,
.problem-section p + h4 {
    margin-top: 55px;
}

.problem-section h2 + p,
.problem-section h3 + p,
.problem-section h4 + p {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    p {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2.1rem;
    }

    .challenges-grid,
    .features-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-text,
    blockquote {
        font-size: 1.8rem;
        padding: 25px 35px 25px 45px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.6rem;
    }
    
    p {
        font-size: 1.6rem;
    }

    .section-title,
    .solution-title,
    .impact-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.9rem;
    }

    .challenges-grid,
    .features-grid,
    .impact-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .hero-description {
        font-size: 1.6rem;
    }
    
    .quote-text,
    blockquote {
        font-size: 1.7rem;
        padding: 20px 25px 20px 40px;
    }
    
    .quote-container {
        padding: 40px 30px;
    }
    
    ul.liststyleblock li {
        font-size: 1.65rem;
        padding: 16px 0 16px 35px;
    }
}

/* Images within article body */
.problem-section img,
.solution-section img,
.conclusion-section img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
}

.problem-section img:hover,
.solution-section img:hover,
.conclusion-section img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Image with caption support */
figure {
    margin: 45px 0;
}

figure img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

figcaption {
    margin-top: 15px;
    text-align: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Smooth scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    padding: 30px 0;
}

/* Related News Cards - Matching Site Design */
.related-news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.related-news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.related-news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.related-news-card:hover .related-news-image img {
    transform: scale(1.05);
    opacity: 1;
}

.related-news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.related-news-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
    transition: all 0.3s ease;
}

.related-news-card:hover .related-news-title {
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-news-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.related-news-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    transition: width 0.3s ease;
}

.related-news-card:hover .related-news-link {
    color: rgba(255, 255, 255, 1);
}

.related-news-card:hover .related-news-link::before {
    width: 100%;
}

.related-news-link:hover {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .related-news-image {
        height: 180px;
    }
    
    .related-news-content {
        padding: 20px;
    }
    
    .related-news-title {
        font-size: 1.6rem;
        min-height: 45px;
    }
    
    .related-news-link {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .related-news-card {
        border-radius: 8px;
    }
    
    .related-news-image {
        height: 160px;
    }
    
    .related-news-content {
        padding: 16px;
    }
    
    .related-news-title {
        font-size: 1.5rem;
        -webkit-line-clamp: 2;
        min-height: 40px;
    }
    
    .related-news-link {
        font-size: 1.3rem;
    }
}

/* Expertise Grid Cards */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 28px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3), 
        rgba(6, 182, 212, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover::after {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 
                0 0 0 1px rgba(59, 130, 246, 0.2);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.expertise-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover .expertise-icon::before {
    opacity: 1;
}

.expertise-icon i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.15) rotateY(15deg);
    border-color: rgba(59, 130, 246, 0.6);
}

.expertise-card:hover .expertise-icon i {
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.5));
}

.expertise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expertise-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.3;
    padding-left: 0;
}

.expertise-content h4::before {
    display: none;
}

.expertise-period {
    font-size: 1.35rem;
    color: rgba(59, 130, 246, 0.8);
    font-style: italic;
    margin-bottom: 12px !important;
    font-weight: 500;
}

.expertise-content > p:not(.expertise-period) {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* Responsive Expertise Grid */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .expertise-card {
        padding: 24px 18px;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i {
        font-size: 2.4rem;
    }
    
    .expertise-content h4 {
        font-size: 1.6rem;
    }
    
    .expertise-period {
        font-size: 1.25rem;
    }
    
    .expertise-content > p:not(.expertise-period) {
        font-size: 1.4rem;
    }
}

/* Press Release Article Styles */
.press-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.press-section-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 24px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.press-section-heading.animate {
    opacity: 1;
    transform: translateX(0);
}

.press-paragraph {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.press-paragraph.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger animation delays */
.press-section-heading:nth-of-type(1) {
    animation-delay: 0.2s;
}

.press-section-heading:nth-of-type(2) {
    animation-delay: 0.3s;
}

.press-section-heading:nth-of-type(3) {
    animation-delay: 0.4s;
}

.press-paragraph:nth-of-type(2) {
    transition-delay: 0.1s;
}

.press-paragraph:nth-of-type(3) {
    transition-delay: 0.2s;
}

.press-paragraph:nth-of-type(4) {
    transition-delay: 0.3s;
} 