/* Enhanced Design for All Use Case Pages - Targeting Existing Structure */

/* Typography */
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 - Updated to match adaptive-ai-drones structure */
.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;
    line-height: 55px;
    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;
}

.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 styling - targeting existing .section class */
.section {
    margin-bottom: 60px;
    margin-top: 60px;
    padding: 40px 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
     
}

/* Intro text styling */
.intro-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Challenges header styling */
.challenges-header {
    margin-bottom: 30px;
}

.challenges-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

/* Challenges Grid - targeting existing structure */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

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

.challenge-card p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Box - targeting existing .quote-box class */
.quote-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

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

.quote-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

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

/* Solution Title - targeting existing classes */
.solution-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}

.solution-desc {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    text-align: center;
}

/* Modules Grid - targeting existing .modules-grid class */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card .icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.module-card .icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.module-card:hover .icon img {
    transform: scale(1.1) rotateY(10deg);
}

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

.module-card p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Video - targeting existing .blog-video class */
.blog-video {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.blog-video:hover {
    transform: scale(1.02);
}

.blog-video video {
    width: 100%;
    border-radius: 16px;
}

/* Solution Section - New Design */
.solution-section {
    padding: 80px 0;
}

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

.solution-title {
    font-size: 3.5rem;
    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;
}

.solution-description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.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 {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Video Section - New Design */
.video-section {
    padding: 60px 0;
}

.video-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

/* Conclusion Section - targeting existing structure */
.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.icon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.icon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-box:hover::before {
    transform: scaleX(1);
}

.icon-box .icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.icon-box .icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.icon-box:hover .icon img {
    transform: scale(1.1) rotateY(10deg);
}

.icon-box h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.icon-box p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
        line-height: 45px;
    }
    
    .challenges-grid,
    .modules-grid,
    .features-grid,
    .icon-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 35px;
    }
    
    .section-title,
    .solution-title,
    .title {
        font-size: 2.8rem;
    }
    
    .challenges-grid,
    .modules-grid,
    .features-grid,
    .icon-container {
        grid-template-columns: 1fr;
    }
    
    .hero-description {
        font-size: 1.6rem;
    }
}

/* Fade-in animations */

/* 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-size: 3.2rem;
    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;
    text-align: center;
}

.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);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.office-security-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

.face-recognition-placeholder {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

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

.it-park-security-placeholder {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.it-park-security-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(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.image-overlay i {
    color: #ffffff;
    font-size: 1.5rem;
    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.05);
}

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

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.blog-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    color: #06B6D4;
    transform: translateX(5px);
}

/* Responsive for related section */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-title {
        font-size: 2.8rem;
    }
}

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

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

.impact-title {
    font-size: 3.2rem;
    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 {
    font-size: 1.8rem;
    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;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.impact-card:hover::before {
    transform: scaleX(1);
}

.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 {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Conclusion Section */
.conclusion-section {
    padding: 80px 0;
}

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

/* Responsive for impact section */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-title {
        font-size: 2.8rem;
    }
    
    .impact-subtitle {
        font-size: 1.6rem;
    }
}

/* Related Blogs Section - Old Structure */
.related-blogs {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.related-blogs h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    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;
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.related-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-blog-card:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.related-blog-card:hover::before {
    transform: scaleX(1);
}

.related-blog-img {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.related-blog-img .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(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.related-blog-img .image-overlay i {
    color: #ffffff;
    font-size: 1.5rem;
    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));
}

.related-blog-card:hover .related-blog-img .blog-image-placeholder {
    transform: scale(1.05);
}

.related-blog-card:hover .related-blog-img .image-overlay {
    background: rgba(59, 130, 246, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.related-blog-content {
    padding: 25px;
}

.related-blog-category {
    font-size: 1.2rem;
    color: #06B6D4;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-blog-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-blog-link {
    color: #06B6D4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.related-blog-link:hover {
    color: #3B82F6;
    transform: translateX(5px);
}

.related-blog-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.related-blog-link:hover::after {
    transform: translateX(3px);
}

/* Responsive for related blogs */
@media (max-width: 1024px) {
    .related-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .related-blogs h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .related-blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-blogs h2 {
        font-size: 2.5rem;
    }
    
    .related-blog-title {
        font-size: 1.6rem;
    }
} 