 p{
    font-size: 1.7rem;
    line-height: 25px;
 }

 h2 {
    font-size: 3.5rem;
    line-height: 40px;
}

 h3 {
    font-size: 2.3rem;
    line-height: 30px;
}

/* 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 60px;
}

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

.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;
}
.quote-text{
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}
.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 img {
    max-width: 100%;
    border-radius: 16px;
    width: auto;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

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

.hero-description {
   
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-top: 50px;
    padding: 30px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Problem Section */
.problem-section {
    padding: 0px 0 80px;
}

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

.section-description {
    
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 50px;
}

.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 */
.quote-section {
    padding: 80px 0;
    background: rgba(59, 130, 246, 0.03);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.quote-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.quote-container::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: serif;
    line-height: 1;
}

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

.quote-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.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);
    }
}

 

.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: 80px 0;
}

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

.solution-title {
    
    font-weight: 700;
    margin-bottom: 20px;
    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;
}

 

.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: 80px 0;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: rgba(59, 130, 246, 0.03);
}

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

.impact-title {
    
    font-weight: 700;
    margin-bottom: 20px;
    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.7);
}

.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: 80px 0;
}

.conclusion-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Related Blogs */
.related-section {
    padding: 80px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.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;
}

.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);
}

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

    .hero-text h1 {
        font-size: 3rem;
    }

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

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

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

    .section-title,
    .solution-title,
    .impact-title {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }
}

/* Smooth scroll animations */
 