/* Accessibility improvements */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sr-only-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    border: 2px solid #ffe066 !important;
    background: #fffbe6 !important;
    color: #333 !important;
    text-decoration: none !important;
    z-index: 9999 !important;
    top: 0 !important;
    left: 0 !important;
}

/* Focus indicators for better keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ffe066 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(255, 224, 102, 0.3) !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-warning {
        color: #000 !important;
    }
    .btn-warning {
        background-color: #000 !important;
        border-color: #000 !important;
        color: #fff !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        animation: none !important;
    }
    .hero-btn-animate:hover {
        transform: none !important;
    }
    .team-card:hover {
        transform: none !important;
    }
    .hero-logo-styled:hover {
        transform: none !important;
    }
    .values-image-frame:hover {
        transform: none !important;
    }
}

/* Original carousel styles */
.swiper-slide {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tooltip-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-slide:hover .tooltip-container {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip-content p {
    margin: 0;
    font-size: 14px;
}

.swiper-slide {
    position: relative;
    cursor: pointer;
}

.tooltip-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 10;
}

.swiper-slide:hover .tooltip-container {
    display: block;
}

.modal-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.image-hover-link {
  display: inline-block;
  overflow: hidden;
}

.image-hover {
  transition: transform 0.3s ease;
}

.image-hover-link:hover .image-hover {
  transform: scale(1.05);
}

.image-hover-link img.hover-zoom {
  transition: transform 0.3s ease;
}

.image-hover-link:hover img.hover-zoom {
  transform: scale(1.05);
}

/* Logo icon styling - Common across multiple pages */
.logo-icon {
    width: 40px;
    height: 40px;
}

/* Hero section background */
.landing-hero-bg {
    background: linear-gradient(120deg, #fffbe6 60%, #f8f9fa 100%);
    min-height: 420px;
}

/* Hero logo styling */
.hero-logo {
    height: 270px;
    width: auto;
}

/* Hero title styling */
.hero-title-shadow {
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #ffe06644;
}

/* Hero subtitle span */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffb300;
}

/* Hero description section */
.hero-description-bg {
    background: rgba(255,251,230,0.7);
    border-radius: 1.5rem;
    margin-top: -2rem;
    box-shadow: 0 2px 16px 0 #ffe06633;
}

/* Hero button animations */
.hero-btn-animate {
    transition: all 0.18s;
    box-shadow: 0 2px 12px 0 #ffe06655;
}

.hero-btn-animate:hover {
    background: linear-gradient(90deg, #ffe066 60%, #ffb300 100%);
    color: #222 !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 24px 0 #ffe06699;
}

/* Animate.css duration override */
.animate__animated {
    animation-duration: 1.1s;
}

/* Hero logo styling with effects */
.hero-logo-styled {
    border-radius: 50%;
    border: 4px solid #ffe066;
    padding: 15px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbe6 50%, #fff3cc 100%);
    box-shadow: 
        0 8px 32px rgba(255, 224, 102, 0.4),
        0 4px 16px rgba(255, 179, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-logo-styled::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.hero-logo-styled:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #ffb300;
    box-shadow: 
        0 12px 48px rgba(255, 224, 102, 0.6),
        0 6px 24px rgba(255, 179, 0, 0.5),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

.hero-logo-styled:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Email banner styling - from our-team.html */
.email-banner {
    background-color: #f1f3f4;
    padding: 10px 15px;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    font-size: 1rem;
    display: inline-block;
}

.email-banner a {
    color: #007bff;
    text-decoration: none;
}

.email-banner a:hover {
    text-decoration: underline;
}

/* Team card styling */
.team-card:hover {
    box-shadow: 0 0 0 4px #ffe066, 0 8px 32px 0 rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.02);
    transition: all 0.2s;
}

.team-img {
    transition: box-shadow 0.2s, transform 0.2s;
}

.team-img:hover {
    box-shadow: 0 0 0 6px #ffd700, 0 4px 16px 0 rgba(0,0,0,0.10);
    transform: scale(1.07);
}

.team-row {
    margin-bottom: 3rem !important;
}

/* Team card gradient background */
.team-card-bg {
    background: linear-gradient(135deg, #fffbe6 60%, #f8f9fa 100%);
}

/* Team member image styling */
.team-member-img {
    max-height: 120px;
    width: 120px;
    object-fit: cover;
    border: 4px solid #ffe066;
    background: #fff;
}

/* Badge styling for team roles */
.role-badge {
    font-size: 0.9rem;
}

/* Partner description text styling */
.partner-description {
    font-size: 1.08rem;
}

.partner-list {
    font-size: 1.02rem;
}

/* Course icon styling */
.course-icon {
    font-size: 48px;
}

/* About us project image */
.project-img {
    max-height: 260px;
    background: #fff3cd;
    padding: 1.5rem;
}

/* About us aims card background */
.aims-card-bg {
    background: linear-gradient(90deg, #fffbe6 60%, #f8f9fa 100%);
}

/* Tech Queens Values Image - Stylized Frame */
.values-image-frame {
    position: relative;
    display: inline-block;
    margin-top: 2rem;
    padding: 20px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff9e6 50%, #fff3cc 100%);
    border-radius: 20px;
    border: 3px solid #ffe066;
    box-shadow: 
        0 8px 32px rgba(255, 224, 102, 0.3),
        0 4px 16px rgba(255, 179, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.values-image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s;
    opacity: 0;
}

.values-image-frame:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ffb300;
    box-shadow: 
        0 12px 48px rgba(255, 224, 102, 0.4),
        0 6px 24px rgba(255, 179, 0, 0.3),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

.values-image-frame:hover::before {
    opacity: 1;
    animation: shimmer-values 1.2s ease-in-out;
}

.values-image-frame img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.values-image-frame:hover img {
    transform: scale(1.01);
}

@keyframes shimmer-values {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive adjustments for values image */
@media (max-width: 768px) {
    .values-image-frame {
        margin-top: 1.5rem;
        padding: 15px;
        border-radius: 15px;
    }
    
    .values-image-frame img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Partner images in footer */
.partner-images {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.partner-img {
    height: 100px;
    width: auto;
    max-width: 100px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
    border: 2px solid rgba(255, 224, 102, 0.3);
    padding: 5px;
}

.partner-img:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: #ffe066;
    box-shadow: 0 4px 12px rgba(255, 224, 102, 0.4);
}

/* Responsive partner images */
@media (max-width: 576px) {
    .partner-images {
        justify-content: center;
        gap: 15px;
    }
    
    .partner-img {
        height: 90px;
        max-width: 90px;
    }
}

/* Video Course Section Styling */
.course-videos {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.2);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f8f9fa;
}

.course-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Responsive video adjustments */
@media (max-width: 768px) {
    .video-container {
        border-radius: 12px;
    }
    
    .course-video {
        border-radius: 12px;
    }
    
    .video-wrapper {
        padding-bottom: 60%; /* Slightly taller on mobile */
    }
}

@media (max-width: 576px) {
    .course-videos {
        padding: 0 10px;
    }
    
    .video-container {
        border-radius: 10px;
        margin-bottom: 2rem !important;
    }
    
    .course-video {
        border-radius: 10px;
    }
    
    .video-wrapper {
        padding-bottom: 65%; /* Even taller on small screens */
    }
}

/* Mini Games Styling */
.mini-game-container {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff9e6 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 224, 102, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.game-header {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.game-header h5 {
    margin: 0;
    font-weight: 600;
    color: #ffb300;
}

.game-header i {
    margin-right: 8px;
    font-size: 1.2em;
}

.game-result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.game-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.game-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Quiz Game */
.quiz-game .question {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-btn {
    padding: 10px 15px;
    background: #fff;
    border: 2px solid #ffe066;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.option-btn:hover {
    background: #ffe066;
    transform: translateY(-2px);
}

.option-btn.correct {
    background: #d4edda !important;
    border-color: #28a745 !important;
    color: #155724;
}

.option-btn.incorrect {
    background: #f8d7da !important;
    border-color: #dc3545 !important;
    color: #721c24;
}

/* Memory Game */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.memory-card {
    aspect-ratio: 1;
    background: #fff;
    border: 2px solid #ffe066;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.memory-card::before {
    content: '?';
    position: absolute;
    font-size: 1.5em;
    color: #666;
}

.memory-card.flipped::before {
    display: none;
}

.memory-card.flipped {
    background: #ffe066;
    transform: scale(1.05);
}

.memory-card.matched {
    background: #d4edda;
    border-color: #28a745;
    pointer-events: none;
}

/* Word Game */
.word-game {
    text-align: center;
}

.scrambled-word {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffb300;
    margin: 15px 0;
    letter-spacing: 3px;
}

.word-input {
    padding: 12px 15px;
    font-size: 1.1em;
    border: 2px solid #ffe066;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    min-width: 200px;
}

.check-word-btn {
    padding: 10px 20px;
    background: #ffe066;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.check-word-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* Click Game */
.click-game {
    text-align: center;
}

.click-target {
    font-size: 4em;
    cursor: pointer;
    margin: 20px;
    transition: all 0.2s;
    display: inline-block;
}

.click-target:hover {
    transform: scale(1.2);
}

.click-target:active {
    transform: scale(0.9);
}

.score {
    font-size: 1.2em;
    font-weight: 600;
    color: #28a745;
    margin-top: 10px;
}

/* Match Game */
.match-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.match-item {
    padding: 15px;
    background: #fff;
    border: 2px solid #ffe066;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
}

.match-item:hover {
    background: #ffe066;
    transform: translateY(-2px);
}

.match-item.selected {
    background: #ffb300;
    color: white;
}

.match-item.matched {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
    pointer-events: none;
}

/* Slider Game */
.slider-game {
    text-align: center;
}

.slider-question {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.balance-slider {
    width: 80%;
    margin: 15px 0;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
}

.balance-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffe066;
    cursor: pointer;
}

.balance-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffe066;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.submit-balance-btn {
    padding: 10px 20px;
    background: #ffe066;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.submit-balance-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* True/False Game */
.tf-game {
    text-align: center;
}

.tf-question {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.tf-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tf-btn {
    padding: 15px 25px;
    background: #fff;
    border: 2px solid #ffe066;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s;
    min-width: 120px;
}

.tf-btn:hover {
    background: #ffe066;
    transform: translateY(-2px);
}

.tf-btn.correct {
    background: #d4edda !important;
    border-color: #28a745 !important;
    color: #155724;
}

.tf-btn.incorrect {
    background: #f8d7da !important;
    border-color: #dc3545 !important;
    color: #721c24;
}

/* Sort Game */
.sort-game {
    text-align: center;
}

.sort-instructions {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.sortable-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.sort-item {
    padding: 12px 15px;
    background: #fff;
    border: 2px solid #ffe066;
    border-radius: 8px;
    cursor: move;
    transition: all 0.3s;
    user-select: none;
}

.sort-item:hover {
    background: #ffe066;
    transform: translateY(-2px);
}

.sort-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.check-order-btn {
    padding: 10px 20px;
    background: #ffe066;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.check-order-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* Responsive adjustments for mini games */
@media (max-width: 576px) {
    .mini-game-container {
        padding: 15px;
        margin-top: 15px;
    }
    
    .options {
        gap: 6px;
    }
    
    .option-btn {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    
    .memory-grid {
        max-width: 250px;
        gap: 8px;
    }
    
    .memory-card {
        font-size: 1.5em;
    }
    
    .tf-options {
        flex-direction: column;
        align-items: center;
    }
    
    .tf-btn {
        min-width: 200px;
        padding: 12px 20px;
    }
    
    .match-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .scrambled-word {
        font-size: 1.4em;
        letter-spacing: 2px;
    }
    
    .word-input {
        min-width: 250px;
        font-size: 1em;
    }
}

/* PowerPoint Presentation Section Styling */
.presentation-icon {
    font-size: 48px;
}

.powerpoint-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.2);
}

.powerpoint-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
}

.ppt-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f8f9fa;
}

.embedded-ppt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* PowerPoint Placeholder Styling */
.ppt-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.placeholder-content {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.placeholder-icon {
    font-size: 4em;
    color: #ffe066;
    margin-bottom: 20px;
}

.placeholder-content h4 {
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
}

.placeholder-content p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* PowerPoint Info Cards */
.ppt-info {
    padding: 25px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff9e6 100%);
    border-top: 2px solid rgba(255, 224, 102, 0.3);
}

.info-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 224, 102, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #ffe066;
}

.info-icon {
    font-size: 2em;
    color: #ffe066;
    margin-bottom: 10px;
}

.info-card h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Responsive adjustments for PowerPoint section */
@media (max-width: 768px) {
    .powerpoint-container {
        border-radius: 12px;
    }
    
    .embedded-ppt,
    .ppt-placeholder {
        border-radius: 12px;
    }
    
    .ppt-wrapper {
        padding-bottom: 60%; /* Slightly taller on mobile */
    }
    
    .placeholder-content {
        padding: 30px 15px;
    }
    
    .placeholder-icon {
        font-size: 3em;
    }
    
    .ppt-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .powerpoint-container {
        border-radius: 10px;
        margin: 0 10px;
    }
    
    .embedded-ppt,
    .ppt-placeholder {
        border-radius: 10px;
    }
    
    .ppt-wrapper {
        padding-bottom: 65%; /* Even taller on small screens */
    }
    
    .placeholder-content {
        padding: 20px 10px;
    }
    
    .placeholder-content h4 {
        font-size: 1.3em;
    }
    
    .placeholder-content p {
        font-size: 1em;
    }
    
    .placeholder-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    
    .info-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .info-icon {
        font-size: 1.5em;
    }
    
    .ppt-info {
        padding: 15px;
    }
}

/* Google Forms Section Styling */
.forms-icon {
    font-size: 48px;
}

.form-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
}

.form-header {
    padding: 25px 20px 20px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff9e6 100%);
    border-bottom: 2px solid rgba(255, 224, 102, 0.2);
    text-align: center;
}

.form-icon-wrapper {
    margin-bottom: 15px;
}

.form-card-icon {
    font-size: 2.5em;
    color: #ffe066;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 224, 102, 0.3);
    border: 2px solid rgba(255, 224, 102, 0.4);
}

.form-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.form-description {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.5;
}

.form-container {
    flex: 1;
    padding: 0;
}

.form-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.embedded-form {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    border-radius: 0 0 15px 15px;
}

/* Google Forms Placeholder Styling */
.form-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-placeholder .placeholder-content {
    text-align: center;
    padding: 30px 20px;
    color: #6c757d;
}

.form-placeholder .placeholder-icon {
    font-size: 3em;
    color: #ffe066;
    margin-bottom: 15px;
}

.form-placeholder h5 {
    color: #495057;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-placeholder p {
    margin-bottom: 8px;
    font-size: 1em;
}

.form-placeholder small {
    font-size: 0.85em;
}

/* Form Info Footer */
.form-info {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid rgba(255, 224, 102, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9em;
    font-weight: 500;
}

.info-item-icon {
    font-size: 1.2em;
    color: #ffe066;
}

/* Form Card Animations */
.form-card .form-icon-wrapper {
    transition: transform 0.3s ease;
}

.form-card:hover .form-icon-wrapper {
    transform: scale(1.1);
}

.form-card:hover .form-card-icon {
    background: #ffe066;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 224, 102, 0.4);
}

/* Responsive adjustments for Google Forms section */
@media (max-width: 992px) {
    .form-card {
        margin-bottom: 30px;
    }
    
    .form-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .form-card {
        border-radius: 12px;
        margin-bottom: 25px;
    }
    
    .form-header {
        padding: 20px 15px 15px;
    }
    
    .form-card-icon {
        font-size: 2em;
        padding: 12px;
    }
    
    .form-title {
        font-size: 1.2em;
    }
    
    .form-description {
        font-size: 0.95em;
    }
    
    .form-wrapper {
        height: 380px;
    }
    
    .form-info {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .info-item {
        font-size: 0.85em;
    }
}

@media (max-width: 576px) {
    .form-card {
        border-radius: 10px;
        margin: 0 10px 20px;
    }
    
    .form-header {
        padding: 15px 10px 12px;
    }
    
    .form-card-icon {
        font-size: 1.8em;
        padding: 10px;
    }
    
    .form-title {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .form-description {
        font-size: 0.9em;
    }
    
    .form-wrapper {
        height: 350px;
    }
    
    .form-placeholder .placeholder-content {
        padding: 20px 15px;
    }
    
    .form-placeholder .placeholder-icon {
        font-size: 2.5em;
        margin-bottom: 12px;
    }
    
    .form-placeholder h5 {
        font-size: 1.1em;
    }
    
    .form-placeholder p {
        font-size: 0.9em;
    }
    
    .form-info {
        padding: 12px;
        gap: 8px;
    }
    
    .info-item {
        font-size: 0.8em;
    }
    
    .info-item-icon {
        font-size: 1.1em;
    }
}

/* PDF Button Styling */
.pdf-button-container {
    max-width: 800px;
    margin: 0 auto;
}

.pdf-button {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.2);
    text-decoration: none;
    color: inherit;
}

.pdf-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
    text-decoration: none;
    color: inherit;
}

.pdf-button-content {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    gap: 20px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.pdf-button-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.pdf-button:hover .pdf-button-content::before {
    left: 100%;
}

.pdf-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 224, 102, 0.3);
    border: 2px solid rgba(255, 224, 102, 0.4);
    transition: all 0.3s ease;
}

.pdf-icon {
    font-size: 2.5em;
    color: #dc3545;
    transition: all 0.3s ease;
}

.pdf-button:hover .pdf-icon-wrapper {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.1);
}

.pdf-button:hover .pdf-icon {
    color: #fff;
}

.pdf-text-content {
    flex: 1;
    min-width: 0;
}

.pdf-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.4em;
    line-height: 1.3;
}

.pdf-description {
    color: #6c757d;
    margin-bottom: 12px;
    font-size: 1em;
    line-height: 1.5;
}

.pdf-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pdf-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.pdf-badge i {
    font-size: 1.1em;
}

.pdf-arrow {
    flex-shrink: 0;
    font-size: 1.5em;
    color: #ffe066;
    transition: all 0.3s ease;
}

.pdf-button:hover .pdf-arrow {
    color: #ffb300;
    transform: translateX(5px);
}

/* PDF Button Animations */
.pdf-button:active {
    transform: translateY(-2px) scale(0.98);
}

.pdf-button:focus {
    outline: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 224, 102, 0.5);
}

/* Enhanced Disclaimer Styling */
.disclaimer-box-enhanced {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%);
    border: 2px solid #2196f3;
    box-shadow: 
        0 8px 32px rgba(33, 150, 243, 0.15),
        0 4px 16px rgba(33, 150, 243, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.disclaimer-box-enhanced:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(33, 150, 243, 0.2),
        0 6px 24px rgba(33, 150, 243, 0.15);
    border-color: #1976d2;
}

.disclaimer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    border-radius: inherit;
}

.disclaimer-content {
    z-index: 2;
}

.disclaimer-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3);
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.disclaimer-box-enhanced:hover .disclaimer-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 24px rgba(33, 150, 243, 0.4);
}

.disclaimer-icon i {
    color: #fff !important;
    font-size: 1.5rem !important;
}

.disclaimer-title {
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(33, 150, 243, 0.1);
    letter-spacing: 0.5px;
}

.disclaimer-text {
    border: 1px solid rgba(33, 150, 243, 0.2);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.disclaimer-box-enhanced:hover .disclaimer-text {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 3px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.disclaimer-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.disclaimer-text i {
    width: 20px;
    text-align: center;
}

.disclaimer-text .fw-semibold {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive adjustments for enhanced disclaimer */
@media (max-width: 768px) {
    .disclaimer-box-enhanced {
        padding: 1.5rem !important;
    }
    
    .disclaimer-icon {
        width: 50px;
        height: 50px;
    }
    
    .disclaimer-icon i {
        font-size: 1.3rem !important;
    }
    
    .disclaimer-title {
        font-size: 1.3rem;
    }
    
    .disclaimer-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .disclaimer-box-enhanced {
        padding: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        margin-right: 0 !important;
        margin-bottom: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .disclaimer-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem !important;
    }
    
    .disclaimer-text {
        padding: 1rem !important;
    }
    
    .disclaimer-text p {
        font-size: 0.95rem;
    }
}

/* Responsive adjustments for PDF buttons */
@media (max-width: 768px) {
    .pdf-button {
        border-radius: 12px;
    }
    
    .pdf-button-content {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .pdf-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .pdf-icon {
        font-size: 2em;
    }
    
    .pdf-title {
        font-size: 1.2em;
    }
    
    .pdf-description {
        font-size: 0.95em;
    }
    
    .pdf-badge {
        font-size: 0.8em;
        padding: 3px 6px;
    }
}

@media (max-width: 576px) {
    .pdf-button-container {
        margin: 0 10px;
    }
    
    .pdf-button {
        border-radius: 10px;
    }
    
    .pdf-button-content {
        padding: 18px 20px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .pdf-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .pdf-icon {
        font-size: 1.8em;
    }
    
    .pdf-title {
        font-size: 1.1em;
        margin-bottom: 6px;
    }
    
    .pdf-description {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
    
    .pdf-info {
        justify-content: center;
        gap: 8px;
    }
    
    .pdf-badge {
        font-size: 0.75em;
        padding: 2px 5px;
    }
    
    .pdf-arrow {
        font-size: 1.3em;
        margin-top: 5px;
    }
}

/* Final Feedback Form Section Styling */
.final-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.3);
    position: relative;
}

.final-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 4px rgba(255, 224, 102, 0.4);
    border-color: #ffe066;
}

.form-header-enhanced {
    padding: 40px 30px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff9e6 50%, #fff3cc 100%);
    border-bottom: 3px solid rgba(255, 224, 102, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 224, 102, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    right: -40px;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 120px;
    height: 120px;
    bottom: -60px;
    left: -60px;
    animation-delay: 2s;
}

.decoration-circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.form-icon-wrapper-enhanced {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.form-card-icon-enhanced {
    font-size: 4em;
    color: #fff;
    background: linear-gradient(135deg, #ffe066, #ffb300);
    padding: 25px;
    border-radius: 50%;
    box-shadow: 
        0 8px 24px rgba(255, 224, 102, 0.4),
        0 4px 12px rgba(255, 179, 0, 0.3);
    border: 4px solid #fff;
    transition: all 0.4s ease;
}

.final-form-card:hover .form-card-icon-enhanced {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(255, 224, 102, 0.5),
        0 6px 16px rgba(255, 179, 0, 0.4);
}

.form-title-enhanced {
    color: #495057;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-description-enhanced {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.course-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    color: #495057;
    border: 1px solid rgba(255, 224, 102, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 224, 102, 0.2);
    border-color: #ffe066;
    transform: translateY(-2px);
}

.highlight-icon {
    color: #28a745;
    font-size: 1.1em;
}

.form-container-enhanced {
    padding: 0;
}

.form-wrapper-enhanced {
    position: relative;
    width: 100%;
    height: 600px;
    background: #f8f9fa;
    overflow: hidden;
}

.embedded-form-enhanced {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.form-footer-enhanced {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 2px solid rgba(255, 224, 102, 0.2);
}

.thank-you-message {
    text-align: center;
    margin-bottom: 25px;
}

.thank-you-icon {
    font-size: 2.5em;
    color: #dc3545;
    margin-bottom: 15px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.thank-you-text {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.5;
}

.social-share {
    text-align: center;
    border-top: 1px solid rgba(255, 224, 102, 0.2);
    padding-top: 20px;
}

.share-text {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.95em;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-facebook { background: linear-gradient(135deg, #1877f2, #166fe5); }
.share-twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.share-linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
.share-email { background: linear-gradient(135deg, #6c757d, #495057); }

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.share-btn i {
    font-size: 1.2em;
}

/* Stats Cards */
.stats-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 224, 102, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ffe066;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffe066, #ffb300);
}

.stats-icon {
    font-size: 2.5em;
}

.stats-number {
    font-size: 2.2em;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9em;
    font-weight: 500;
}

/* Additional Resources */
.additional-resources {
    background: rgba(255, 251, 230, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 224, 102, 0.2);
}

.resources-header {
    position: relative;
}

.resource-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 224, 102, 0.2);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ffe066;
}

.resource-icon {
    font-size: 2.5em;
    color: #ffe066;
    margin-bottom: 15px;
}

.resource-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.resource-description {
    color: #6c757d;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.resource-link {
    color: #ffe066;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: #ffb300;
    transform: translateX(5px);
}

.resource-link i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments for final form section */
@media (max-width: 768px) {
    .form-header-enhanced {
        padding: 30px 20px;
    }
    
    .form-card-icon-enhanced {
        font-size: 3em;
        padding: 20px;
    }
    
    .form-title-enhanced {
        font-size: 1.6em;
    }
    
    .form-description-enhanced {
        font-size: 1em;
    }
    
    .course-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
    
    .form-wrapper-enhanced {
        height: 500px;
    }
    
    .form-footer-enhanced {
        padding: 20px;
    }
    
    .stats-card {
        margin-bottom: 20px;
    }
    
    .additional-resources {
        padding: 20px;
    }
    
    .resource-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .share-buttons {
        gap: 12px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .form-header-enhanced {
        padding: 25px 15px;
    }
    
    .form-card-icon-enhanced {
        font-size: 2.5em;
        padding: 15px;
    }
    
    .form-title-enhanced {
        font-size: 1.4em;
        line-height: 1.3;
    }
    
    .form-description-enhanced {
        font-size: 0.95em;
    }
    
    .course-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .form-wrapper-enhanced {
        height: 450px;
    }
    
    .form-footer-enhanced {
        padding: 15px;
    }
    
    .thank-you-icon {
        font-size: 2em;
    }
    
    .thank-you-title {
        font-size: 1.1em;
    }
    
    .thank-you-text {
        font-size: 0.9em;
    }
    
    .stats-number {
        font-size: 1.8em;
    }
    
    .stats-icon {
        font-size: 2em;
    }
    
    .additional-resources {
        padding: 15px;
    }
    
    .resource-card {
        padding: 15px;
    }
    
    .resource-icon {
        font-size: 2em;
    }
    
    .resource-title {
        font-size: 1.1em;
    }
    
    .resource-description {
        font-size: 0.9em;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 35px;
        height: 35px;
    }
    
    .share-btn i {
        font-size: 1em;
    }
}

/* ================================
   ENHANCED HERO SECTION STYLES
   ================================ */

/* Enhanced Hero Background */
.landing-hero-bg-enhanced {
    background: linear-gradient(135deg, 
        #fff9e6 0%, 
        #fffbe6 25%, 
        #f0f8ff 50%, 
        #fff3e0 75%, 
        #fffbe6 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.landing-hero-bg-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23FFE066" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FFE066" stop-opacity="0"/></radialGradient></defs><circle cx="25" cy="10" r="8" fill="url(%23a)"/><circle cx="75" cy="10" r="8" fill="url(%23a)"/></svg>') repeat;
    animation: float-pattern 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float-pattern {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffe066, #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 224, 102, 0.3);
    animation: float-up-down 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 24px;
    color: white;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 3s;
}

.floating-icon-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 4.5s;
}

@keyframes float-up-down {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(0) rotate(180deg) scale(1);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.05);
        opacity: 1;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffe066, #ffb300);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 224, 102, 0.4);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Hero Title */
.hero-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.text-highlight-animated {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

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

/* Enhanced Hero Subtitle */
.hero-subtitle-enhanced {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    padding: 2rem 0;
}

.stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.2);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b6b;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 2rem;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-gradient-primary:hover::before {
    left: 100%;
}

.btn-gradient-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px rgba(255, 107, 107, 0.6);
    color: white;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-stack {
    position: relative;
    height: 500px;
}

.hero-image-main {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-main-img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.hero-main-img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.hero-image-floating {
    position: absolute;
    z-index: 4;
    animation: float-gentle 4s ease-in-out infinite;
}

.hero-float-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.hero-float-3 {
    top: 30%;
    left: -5%;
    animation-delay: 2s;
}

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

.achievement-badge,
.notification-popup {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 224, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.achievement-badge:hover,
.notification-popup:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(255, 224, 102, 0.3);
}

/* ================================
   COMMUNITY HIGHLIGHTS STYLES
   ================================ */

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f1f3f4 100%);
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 224, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 224, 102, 0.2);
    border-color: #ffe066;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #ffe066;
    box-shadow: 0 4px 16px rgba(255, 224, 102, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-content {
    position: relative;
}

.stars {
    display: flex;
    gap: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: #6c757d;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #ffe066;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.3;
}

/* Community Stats */
.community-stats {
    margin-top: 3rem;
}

.stat-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.stat-circle-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffe066;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-circle-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 224, 102, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s;
    opacity: 0;
}

.stat-circle:hover .stat-circle-inner::before {
    opacity: 1;
    animation: shimmer-stat 1.5s ease-in-out;
}

@keyframes shimmer-stat {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-circle:hover .stat-circle-inner {
    transform: scale(1.1) rotate(5deg);
    border-color: #ff6b6b;
    box-shadow: 0 16px 48px rgba(255, 107, 107, 0.3);
}

.stat-circle i {
    font-size: 2rem;
    color: #ffe066;
    margin-bottom: 0.5rem;
}

.stat-circle .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #2c3e50;
    margin: 0;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin: 0;
}

/* ================================
   INTERACTIVE GALLERY STYLES
   ================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-large .gallery-card {
    height: 350px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.8) 0%, 
        rgba(238, 90, 36, 0.9) 50%, 
        rgba(255, 159, 243, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-content h4,
.gallery-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-item:hover .gallery-card img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ================================
   MODERN CARD STYLES
   ================================ */

.modern-card {
    background: white;
    border-radius: 24px;
    border: 2px solid rgba(255, 224, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.card-hover-effect:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 24px 80px rgba(255, 224, 102, 0.25);
    border-color: #ffe066;
}

.card-icon-wrapper {
    position: absolute;
    /* top: -30px; */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
    border: 3px solid white;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.modern-card:hover .card-icon {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, #ffe066, #ffb300);
    box-shadow: 0 12px 48px rgba(255, 224, 102, 0.6);
}

.modern-card .card-body {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.modern-card .card-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modern-card .card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 224, 102, 0.2), rgba(255, 179, 0, 0.3));
    color: #b8860b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
    border: 1px solid rgba(255, 224, 102, 0.4);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: linear-gradient(135deg, #ffe066, #ffb300);
    color: white;
    transform: scale(1.05);
}

.btn-modern {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */

@media (max-width: 992px) {
    .hero-title-enhanced {
        font-size: 2.8rem;
    }
    
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        display: none; /* Hide on tablets and mobile */
    }
}

@media (max-width: 768px) {
    .landing-hero-bg-enhanced {
        min-height: 70vh;
    }
    
    .hero-title-enhanced {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .hero-image-stack {
        height: 350px;
        margin-top: 2rem;
    }
    
    .hero-main-img {
        max-height: 300px;
    }
    
    .hero-image-floating {
        display: none; /* Hide floating elements on mobile */
    }
    
    .stat-circle {
        width: 120px;
        height: 120px;
    }
    
    .stat-circle .stat-number {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-card {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .modern-card .card-body {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title-enhanced {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gradient-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-circle i {
        font-size: 1.5rem;
    }
    
    .stat-circle .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-circle .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
}

/* Animation Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .floating-icon,
    .hero-image-floating,
    .gallery-item,
    .modern-card,
    .testimonial-card,
    .stat-circle-inner {
        animation: none !important;
        transition: none !important;
    }
    
    .text-highlight-animated {
        background: #ff6b6b;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
        color: #ff6b6b;
    }
}

/* ================================
   ABOUT US PAGE SPECIFIC STYLES
   ================================ */

/* Hero Stats Mini */
.hero-stats-mini {
    padding: 1.5rem 0;
}

.stat-item-mini {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 224, 102, 0.2);
}

.stat-item-mini:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
}

.stat-number-mini {
    font-size: 1.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.2rem;
}

.stat-label-mini {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
}

/* Project Showcase */

/* Module Header Styling for Course Page */
.module-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(105, 108, 255, 0.1), rgba(255, 255, 255, 0.8));
  border-radius: 12px;
  border: 1px solid rgba(105, 108, 255, 0.2);
  transition: all 0.3s ease;
}

.module-header:hover {
  background: linear-gradient(135deg, rgba(105, 108, 255, 0.15), rgba(255, 255, 255, 0.9));
  border-color: rgba(105, 108, 255, 0.3);
  box-shadow: 0 8px 25px rgba(105, 108, 255, 0.15);
}

.module-header h3 {
  color: var(--bs-primary);
  margin-bottom: 0.25rem;
}

.module-header p {
  color: #6c757d;
  font-size: 0.95rem;
}

.module-badge .badge {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 25px;
  font-size: 0.85rem !important;
  text-transform: none;
}

.badge.bg-gradient-primary {
  background: linear-gradient(135deg, var(--bs-primary), #4f46e5) !important;
}

/* Enhanced Video Container */
.video-container {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.video-container:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Course Progress Indicator */
.course-progress-indicator {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.progress-step {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.progress-step:hover {
  background: rgba(255, 255, 255, 0.7);
}

.progress-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
}

.progress-step.completed .progress-step-number {
  background: var(--bs-success);
  color: white;
}

.progress-step.current .progress-step-number {
  background: var(--bs-primary);
  color: white;
}

.progress-step.pending .progress-step-number {
  background: #e9ecef;
  color: #6c757d;
}

/* Enhanced Mini Games Styling */
.mini-game-container {
  margin-top: 2rem;
  background: linear-gradient(135deg, #f8f9fa, rgba(255, 255, 255, 0.9));
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mini-game-container:hover {
  border-color: rgba(105, 108, 255, 0.2);
  box-shadow: 0 4px 15px rgba(105, 108, 255, 0.1);
}

.game-header {
  background: linear-gradient(135deg, var(--bs-primary), #4f46e5);
  color: white;
  border-radius: 10px 10px 0 0;
  padding: 1rem 1.5rem;
}

.game-header h5 {
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-header i {
  font-size: 1.2rem;
}

/* Responsive adjustments for module headers */
@media (max-width: 768px) {
  .module-header {
    padding: 1rem;
  }
  
  .module-header .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem;
  }
  
  .module-badge {
    align-self: flex-start;
  }
  
  .module-header h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .video-container {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .module-header {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .module-header h3 {
    font-size: 1rem;
  }
  
  .module-header p {
    font-size: 0.85rem;
  }
  
  .module-badge .badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem !important;
  }
}

/* Achievement Banner Styling */
.achievement-banner {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(40, 167, 69, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.achievement-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer-achievement 3s infinite;
}

@keyframes shimmer-achievement {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.achievement-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.achievement-badges .badge {
  transition: all 0.3s ease;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.achievement-badges .badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.project-showcase {
    position: relative;
    z-index: 2;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.showcase-image-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 20px 60px rgba(255, 224, 102, 0.3);
}

.showcase-main-img {
    transition: all 0.4s ease;
    border-radius: 24px;
}

.showcase-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.showcase-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 224, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    animation: float-gentle 3s ease-in-out infinite;
}

/* Project Content */
.project-content {
    padding: 2rem 0;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 224, 102, 0.2), rgba(255, 179, 0, 0.3));
    border-radius: 50%;
    border: 3px solid rgba(255, 224, 102, 0.5);
}

.project-icon {
    font-size: 2.5rem;
}

.project-highlights .highlight-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 224, 102, 0.1);
}

.project-highlights .highlight-item:hover {
    background: white;
    transform: translateX(10px);
    border-color: #ffe066;
    box-shadow: 0 8px 32px rgba(255, 224, 102, 0.2);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Funding Card */
.funding-card {
    border: 2px solid rgba(255, 224, 102, 0.2);
    background: white;
}

.eu-logo-container {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.eu-logo {
    max-height: 100px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.funding-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.disclaimer-item {
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: rgba(255, 224, 102, 0.1) !important;
    transform: translateY(-2px);
}

/* Goal Cards */
.goal-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: white;
}

.goal-header {
    position: relative;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.goal-icon-wrapper {
    position: relative;
}

.goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.goal-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.goal-content {
    padding: 1rem 2rem 2rem;
}

.goal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.goal-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.goal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.goal-tag {
    background: linear-gradient(135deg, rgba(255, 224, 102, 0.2), rgba(255, 179, 0, 0.3));
    color: #b8860b;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 224, 102, 0.4);
    transition: all 0.3s ease;
}

.goal-tag:hover {
    background: linear-gradient(135deg, #ffe066, #ffb300);
    color: white;
    transform: scale(1.05);
}

.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(360deg);
}

/* Impact Stats Large */
.stat-circle-large {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
}

.stat-circle-inner-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffe066;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-circle-inner-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 224, 102, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 1s;
    opacity: 0;
}

.stat-circle-large:hover .stat-circle-inner-large::before {
    opacity: 1;
    animation: shimmer-large 2s ease-in-out;
}

@keyframes shimmer-large {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-circle-large:hover .stat-circle-inner-large {
    transform: scale(1.1) rotate(5deg);
    border-color: #ff6b6b;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.stat-circle-large i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin: 0;
    line-height: 1;
}

.stat-label-large {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ffe066, #ff6b6b, #54a0ff);
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    margin: 2rem 0;
}

.timeline-item-left {
    left: 0;
    padding-right: 3rem;
}

.timeline-item-right {
    left: 50%;
    padding-left: 3rem;
}

.timeline-card {
    position: relative;
    padding: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 224, 102, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #ffe066;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 16px rgba(255, 224, 102, 0.4);
}

.timeline-item-left .timeline-card::before {
    right: -35px;
}

.timeline-item-right .timeline-card::before {
    left: -35px;
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 224, 102, 0.3);
    border-color: #ffe066;
}

.timeline-card:hover::before {
    background: #ff6b6b;
    transform: translateY(-50%) scale(1.3);
}

.timeline-date {
    position: absolute;
    top: 5px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

.timeline-content {
    padding: 2rem;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-card::before {
        left: -35px !important;
        right: auto !important;
    }
    
    .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .stat-circle-large {
        width: 140px;
        height: 140px;
    }
    
    .stat-number-large {
        font-size: 2rem;
    }
    
    .stat-label-large {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-stats-mini .col-6 {
        margin-bottom: 1rem;
    }
    
    .stat-item-mini {
        padding: 0.6rem;
    }
    
    .stat-number-mini {
        font-size: 1.2rem;
    }
    
    .stat-label-mini {
        font-size: 0.75rem;
    }
    
    .goal-header {
        padding: 1.5rem 1.5rem 0.5rem;
    }
    
    .goal-content {
        padding: 0.5rem 1.5rem 1.5rem;
    }
    
    .goal-number {
        font-size: 2rem;
    }
    
    .goal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-circle-large {
        width: 120px;
        height: 120px;
    }
    
    .stat-number-large {
        font-size: 1.8rem;
    }
    
    .stat-circle-large i {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 3rem !important;
    }
}

/* ===== OUR TEAM PAGE STYLES ===== */

/* Team Hero Section */
.team-hero {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
              linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.team-hero-content {
  position: relative;
  z-index: 2;
}

.team-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.team-hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-stat {
  text-align: center;
  color: white;
}

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Consortium Overview */
.consortium-overview {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.overview-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(155, 81, 224, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(155, 81, 224, 0.15);
}

.overview-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(155, 81, 224, 0.3);
}

/* Partner Cards */
.partner-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(155, 81, 224, 0.15);
  border-color: rgba(155, 81, 224, 0.2);
}

.partner-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border-radius: 35%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.partner-mission {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(155, 81, 224, 0.05);
  border-radius: 15px;
  border-left: 4px solid var(--primary-gradient-start);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.objective-item {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(155, 81, 224, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.objective-item::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.2rem;
  opacity: 0.7;
}

.objective-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(155, 81, 224, 0.1);
  background: linear-gradient(135deg, #fff 0%, rgba(155, 81, 224, 0.05) 100%);
}

.partner-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.partner-actions .btn {
  flex: 1;
  border-radius: 15px;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}

/* Network Section */
.network-showcase {
  margin-top: 3rem;
}

.network-card {
  background: white;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.network-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(155, 81, 224, 0.03) 50%, transparent 60%);
  transform: rotate(-45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.network-card:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

.network-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(155, 81, 224, 0.15);
  border-color: rgba(155, 81, 224, 0.2);
}

.network-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(155, 81, 224, 0.3);
  position: relative;
}

.network-icon {
  font-size: 2.5rem;
  color: white;
}

.network-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.network-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.network-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.mini-stat {
  text-align: center;
}

.mini-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gradient-start);
  margin-bottom: 0.5rem;
}

.mini-stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.expertise-tag {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(155, 81, 224, 0.3);
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 81, 224, 0.4);
}

.impact-metrics {
  margin-top: 1.5rem;
}

.metric-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Contact Cards */
.contact-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(155, 81, 224, 0.15);
  border-color: rgba(155, 81, 224, 0.2);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(155, 81, 224, 0.1);
}

.contact-logo {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.contact-role {
  color: var(--primary-gradient-start);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(155, 81, 224, 0.05);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(155, 81, 224, 0.1);
}

.contact-method:hover {
  background: rgba(155, 81, 224, 0.1);
  transform: translateX(5px);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(155, 81, 224, 0.2);
}

.contact-method i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.method-label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.method-value {
  display: block;
  color: #6c757d;
  font-size: 0.95rem;
}

/* CTA Section */
.collaboration-cta {
  background: linear-gradient(135deg, rgba(155, 81, 224, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
  padding: 4rem 2rem;
  border-radius: 25px;
  border: 2px solid rgba(155, 81, 224, 0.1);
  position: relative;
  overflow: hidden;
}

.collaboration-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d946ef" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%239b51e0" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23d946ef" opacity="0.08"/><circle cx="10" cy="60" r="1" fill="%239b51e0" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.cta-description {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animations */
@keyframes shimmer {
  0% { transform: rotate(-45deg) translateX(-100%); }
  100% { transform: rotate(-45deg) translateX(100%); }
}

/* Mobile Responsiveness for Team Page */
@media (max-width: 768px) {
  .team-hero h1 {
    font-size: 2.8rem;
  }
  
  .team-hero-stats {
    gap: 2rem;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .partner-card, .network-card, .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .objectives-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-actions {
    flex-direction: column;
  }
  
  .network-stats {
    gap: 1rem;
  }
  
  .contact-header {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== PROJECT DESCRIPTION SECTION STYLES ===== */

/* Project Story Card */
.project-story-card {
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.project-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    animation: shimmer 3s ease-in-out infinite;
}

.story-header {
    position: relative;
}

.story-icon-wrapper {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: float-gentle 3s ease-in-out infinite;
}

.story-icon {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.story-text p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-text .lead {
    font-weight: 500;
    color: #2c3e50;
}

.implementation-info {
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.implementation-info:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

/* Footer Disclaimer Styles */
.funding-disclaimer {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #007bff;
}

.disclaimer-item-footer {
    padding: 0.5rem 0;
}

.disclaimer-item-footer:hover {
    background: rgba(0, 123, 255, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Responsive adjustments for project description */
@media (max-width: 768px) {
    .story-icon {
        font-size: 2rem;
    }
    
    .story-text p,
    .story-text .lead {
        font-size: 1rem;
    }
    
    .project-story-card {
        margin: 0 1rem;
    }
    
    .implementation-info {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .story-header h3 {
        font-size: 1.5rem;
    }
    
    .story-icon-wrapper {
        padding: 0.75rem;
    }
    
    .story-icon {
        font-size: 1.75rem;
    }
}

/* =================================================================
   DARK MODE STYLES FOR VIDEO COURSES
   ================================================================= */

/* Dark mode video container styling */
[data-bs-theme="dark"] .video-container {
    background: #2b2b2b;
    border-color: rgba(255, 224, 102, 0.4);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .video-container:hover {
    background: #333333;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 224, 102, 0.5);
    border-color: #ffe066;
}

[data-bs-theme="dark"] .video-wrapper {
    background: #1e1e1e;
}

/* Dark mode module header styling */
[data-bs-theme="dark"] .module-header h4 {
    color: #ffffff;
}

[data-bs-theme="dark"] .module-header p {
    color: #cccccc;
}

/* Dark mode mini-games container */
[data-bs-theme="dark"] .mini-game-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    border-color: rgba(255, 224, 102, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .game-header {
    color: #ffffff;
}

[data-bs-theme="dark"] .game-header h5 {
    color: #ffe066;
}

[data-bs-theme="dark"] .quiz-game .question {
    color: #ffffff;
}

/* Dark mode quiz options */
[data-bs-theme="dark"] .option-btn {
    background: #404040;
    border-color: #ffe066;
    color: #ffffff;
}

[data-bs-theme="dark"] .option-btn:hover {
    background: #ffe066;
    color: #000000;
}

[data-bs-theme="dark"] .option-btn.correct {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .option-btn.incorrect {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
}

/* Dark mode memory game */
[data-bs-theme="dark"] .memory-card {
    background: #404040;
    border-color: #ffe066;
    color: #ffffff;
}

[data-bs-theme="dark"] .memory-card::before {
    color: #cccccc;
}

[data-bs-theme="dark"] .memory-card:hover {
    background: #505050;
}

/* Dark mode PDF buttons */
[data-bs-theme="dark"] .pdf-button {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    border-color: rgba(255, 224, 102, 0.4);
}

[data-bs-theme="dark"] .pdf-button:hover {
    background: linear-gradient(135deg, #333333 0%, #404040 100%);
    border-color: #ffe066;
    box-shadow: 0 8px 25px rgba(255, 224, 102, 0.3);
}

[data-bs-theme="dark"] .pdf-text-content h6 {
    color: #ffffff;
}

[data-bs-theme="dark"] .pdf-text-content p {
    color: #cccccc;
}

[data-bs-theme="dark"] .pdf-icon-wrapper i {
    color: #ffe066;
}

[data-bs-theme="dark"] .pdf-arrow i {
    color: #ffe066;
}

/* Dark mode modern cards */
[data-bs-theme="dark"] .modern-card {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .modern-card:hover {
    background: #333333;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .modern-card .card-title {
    color: #ffffff;
}

[data-bs-theme="dark"] .modern-card .card-text {
    color: #cccccc;
}

[data-bs-theme="dark"] .feature-badge {
    background: linear-gradient(135deg, #ffe066, #ffb300);
    color: #000000;
}

/* Dark mode course features */
[data-bs-theme="dark"] .card-hover-effect {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .card-hover-effect:hover {
    background: #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

[data-bs-theme="dark"] .card-hover-effect .card-title {
    color: #ffffff;
}

[data-bs-theme="dark"] .card-hover-effect .card-text {
    color: #cccccc;
}

/* Dark mode testimonial cards */
[data-bs-theme="dark"] .testimonial-card {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .testimonial-card h5 {
    color: #ffffff;
}

[data-bs-theme="dark"] .testimonial-card p {
    color: #cccccc;
}

/* Dark mode stats cards */
[data-bs-theme="dark"] .stats-card {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .stats-number {
    color: #ffe066 !important;
}

[data-bs-theme="dark"] .stats-label {
    color: #cccccc !important;
}

/* Dark mode final form card */
[data-bs-theme="dark"] .final-form-card {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .form-header-enhanced h3 {
    color: #ffffff;
}

[data-bs-theme="dark"] .form-description-enhanced {
    color: #cccccc;
}

[data-bs-theme="dark"] .achievement-banner {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    border-color: rgba(255, 224, 102, 0.4);
}

[data-bs-theme="dark"] .achievement-banner h4 {
    color: #ffffff;
}

[data-bs-theme="dark"] .achievement-banner p {
    color: #cccccc;
}

/* Dark mode resource cards */
[data-bs-theme="dark"] .resource-card {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .resource-card:hover {
    background: #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .resource-card h5 {
    color: #ffffff;
}

[data-bs-theme="dark"] .resource-card p {
    color: #cccccc;
}

/* Dark mode community stats */
[data-bs-theme="dark"] .community-stats {
    background: #2b2b2b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .stat-circle {
    background: #333333;
    border-color: rgba(255, 224, 102, 0.4);
}

[data-bs-theme="dark"] .stat-circle h3 {
    color: #ffe066;
}

[data-bs-theme="dark"] .stat-circle p {
    color: #cccccc;
}

/* Dark mode course highlights */
[data-bs-theme="dark"] .course-highlights {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .highlight-item {
    color: #cccccc;
}

[data-bs-theme="dark"] .highlight-item i {
    color: #ffe066;
}

/* Dark mode thank you message */
[data-bs-theme="dark"] .thank-you-message h5 {
    color: #ffffff;
}

[data-bs-theme="dark"] .thank-you-message p {
    color: #cccccc;
}

[data-bs-theme="dark"] .thank-you-icon {
    color: #ffe066;
}

/* Dark mode iframe background fix */
[data-bs-theme="dark"] .form-wrapper-enhanced {
    background: #2b2b2b;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
}

/* Dark mode section backgrounds */
[data-bs-theme="dark"] .bg-gradient-light {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
}

[data-bs-theme="dark"] .bg-white {
    background: #1e1e1e !important;
}



