/* Awards and Recognitions Section - Theme Color #26c976 */

.spk-awards-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.spk-awards-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 97, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.spk-awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.spk-awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.spk-awards-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.spk-awards-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #26c976 0%, #ff8a5c 50%, #87CEEB 100%);
    border-radius: 2px;
}

.spk-awards-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

/* Trophy Image Section */
.spk-awards-trophy-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spk-awards-trophy-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spk-awards-trophy-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 97, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: spk-pulse 3s ease-in-out infinite;
}

@keyframes spk-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.spk-awards-trophy-image {
    position: relative;
    z-index: 2;
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(241, 97, 38, 0.3));
}

.spk-awards-confetti {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.spk-awards-confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD700;
    opacity: 0.7;
}

.spk-awards-confetti-piece:nth-child(1) {
    top: 10%;
    left: 20%;
    background: #FFD700;
    transform: rotate(45deg);
}

.spk-awards-confetti-piece:nth-child(2) {
    top: 15%;
    left: 80%;
    background: #26c976;
    transform: rotate(-30deg);
}

.spk-awards-confetti-piece:nth-child(3) {
    top: 25%;
    left: 10%;
    background: #87CEEB;
    transform: rotate(60deg);
}

.spk-awards-confetti-piece:nth-child(4) {
    top: 30%;
    left: 90%;
    background: #FFD700;
    transform: rotate(-45deg);
}

.spk-awards-confetti-piece:nth-child(5) {
    top: 70%;
    left: 15%;
    background: #26c976;
    transform: rotate(30deg);
}

.spk-awards-confetti-piece:nth-child(6) {
    top: 75%;
    left: 85%;
    background: #87CEEB;
    transform: rotate(-60deg);
}

.spk-awards-confetti-piece:nth-child(7) {
    top: 85%;
    left: 25%;
    background: #FFD700;
    transform: rotate(45deg);
}

.spk-awards-confetti-piece:nth-child(8) {
    top: 90%;
    left: 75%;
    background: #26c976;
    transform: rotate(-30deg);
}

/* Awards Content */
.spk-awards-content {
    position: relative;
}

.spk-awards-text-block {
    margin-bottom: 30px;
}

.spk-awards-paragraph {
    font-size: 18px;
    color: #666666;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 20px;
}

.spk-awards-paragraph:first-of-type {
    font-size: 19px;
    color: #333333;
    font-weight: 500;
}

.spk-awards-highlight-box {
    background: linear-gradient(120deg, rgba(241, 97, 38, 0.08) 0%, rgba(135, 206, 235, 0.08) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #26c976;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.spk-awards-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.spk-awards-highlight-box p {
    font-size: 18px;
    color: #333333;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.spk-awards-decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #26c976 0%, #ff8a5c 100%);
    margin: 20px 0;
    border-radius: 2px;
}

/* Awards List */
.spk-awards-list {
    margin-top: 30px;
}

.spk-awards-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #26c976;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spk-awards-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(241, 97, 38, 0.15);
}

.spk-awards-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #26c976 0%, #ff8a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.spk-awards-item-icon i {
    font-size: 1.5rem;
    color: white;
}

.spk-awards-item-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.spk-awards-item-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spk-awards-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spk-awards-trophy-wrapper {
        order: -1;
    }

    .spk-awards-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .spk-awards-title {
        font-size: 1.8rem;
    }

    .spk-awards-trophy-container {
        width: 250px;
        height: 250px;
    }

    .spk-awards-trophy-image {
        width: 200px;
    }

    .spk-awards-paragraph {
        font-size: 16px;
    }

    .spk-awards-highlight-box p {
        font-size: 16px;
    }

    .spk-awards-item {
        padding: 15px;
    }
}

/* Animation Classes for GSAP */
.spk-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.spk-fade-left {
    opacity: 0;
    transform: translateX(-50px);
}

.spk-fade-right {
    opacity: 0;
    transform: translateX(50px);
}

.spk-scale-up {
    opacity: 0;
    transform: scale(0.8);
}

.spk-rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
}