/* ================================================
   SPK About Section Styles
   Custom styles for the About SPK section
   ================================================ */

/* Main Section Container */
.spk-about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.spk-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
}

/* Image Wrapper */
.spk-about-image-wrapper {
    position: relative;
    z-index: 1;
}

.spk-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.spk-about-image::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 ease;
    z-index: 2;
}

.spk-about-image:hover::before {
    left: 100%;
}

.spk-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.spk-about-image:hover img {
    transform: scale(1.05);
}

/* Content Wrapper */
.spk-about-content-wrapper {
    position: relative;
    z-index: 1;
}

.spk-about-content {
    padding-left: 40px;
}

/* Section Header */
.spk-section-header {
    margin-bottom: 25px;
}

.spk-subtitle {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: spk-fade-in-down 0.8s ease;
}

.spk-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff6b35;
}

.spk-main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 0;
    animation: spk-fade-in-up 0.8s ease;
}

.spk-highlight {
    color: #3b5bdb;
    background: linear-gradient(135deg, #3b5bdb 0%, #5c7cfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Description */
.spk-description {
    margin-bottom: 30px;
}

.spk-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin: 0;
}

/* Features List */
.spk-features-list {
    margin-top: 30px;
}

.spk-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.4s ease;
    border-left: 3px solid transparent;
}

.spk-feature-item:hover {
    background: #f8f9fa;
    border-left-color: #26c976;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Feature Icon */
.spk-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.spk-feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #26c976 0%, #ff6b35 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.spk-feature-item:hover .spk-feature-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.spk-icon-svg {
    width: 32px;
    height: 32px;
    color: #3b5bdb;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.spk-feature-item:hover .spk-icon-svg {
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Animate SVG paths */
.spk-icon-svg path,
.spk-icon-svg circle,
.spk-icon-svg rect,
.spk-icon-svg line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: spk-draw-svg 2s ease forwards;
}

.spk-feature-item:nth-child(1) .spk-icon-svg path,
.spk-feature-item:nth-child(1) .spk-icon-svg circle {
    animation-delay: 0.3s;
}

.spk-feature-item:nth-child(2) .spk-icon-svg path,
.spk-feature-item:nth-child(2) .spk-icon-svg rect,
.spk-feature-item:nth-child(2) .spk-icon-svg line {
    animation-delay: 0.5s;
}

.spk-feature-item:nth-child(3) .spk-icon-svg path,
.spk-feature-item:nth-child(3) .spk-icon-svg circle {
    animation-delay: 0.7s;
}

/* Feature Text */
.spk-feature-text {
    flex: 1;
}

.spk-feature-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

/* Keyframe Animations */
@keyframes spk-fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spk-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spk-draw-svg {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes spk-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .spk-about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .spk-main-title {
        font-size: 28px;
    }

    .spk-about-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .spk-main-title {
        font-size: 24px;
    }

    .spk-feature-icon {
        width: 50px;
        height: 50px;
    }

    .spk-icon-svg {
        width: 26px;
        height: 26px;
    }

    .spk-feature-item {
        padding: 15px;
    }

    .spk-about-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .spk-main-title {
        font-size: 20px;
    }

    .spk-subtitle {
        font-size: 12px;
    }

    .spk-description p,
    .spk-feature-text p {
        font-size: 13px;
    }
}