/* Admission Page - Card-Based Animated Design */
/* Theme Color: #26c976 */

.spk-admission-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.spk-admission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Animated Header Card */
.spk-admission-hero {
    background: linear-gradient(135deg, #26c976 0%, #FF8C5A 50%, #FFB74D 100%);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(241, 97, 38, 0.3);
}

.spk-admission-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.spk-admission-hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(180deg);
    }
}

.spk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.spk-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.spk-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Info Cards - Staggered Layout */
.spk-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.spk-info-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spk-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.spk-info-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2196F3, #42A5F5);
}

.spk-info-card:nth-child(3)::before {
    background: linear-gradient(90deg, #9C27B0, #AB47BC);
}

.spk-info-card:hover::before {
    transform: scaleX(1);
}

.spk-info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.spk-info-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.5s ease;
}

.spk-info-card:nth-child(2) .spk-info-icon-wrapper {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.spk-info-card:nth-child(3) .spk-info-icon-wrapper {
    background: linear-gradient(135deg, #9C27B0, #AB47BC);
}

.spk-info-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 20px;
    opacity: 0.3;
    transform: scale(1.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.spk-info-icon {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.spk-info-card:hover .spk-info-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.spk-info-card:hover .spk-info-icon {
    transform: scale(1.2);
}

.spk-info-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.spk-info-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* Documents Section - Card Grid */
.spk-documents-wrapper {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.spk-documents-header {
    text-align: center;
    margin-bottom: 50px;
}

.spk-documents-badge {
    display: inline-block;
    background: linear-gradient(135deg, #26c976, #FF8C5A);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.spk-documents-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

/* Document Cards Grid */
.spk-documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.spk-doc-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.spk-doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 97, 38, 0.05), rgba(255, 140, 90, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spk-doc-card:hover::before {
    opacity: 1;
}

.spk-doc-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #26c976;
    box-shadow: 0 15px 40px rgba(241, 97, 38, 0.2);
}

.spk-doc-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF5722, #FF7043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.spk-doc-card:nth-child(2) .spk-doc-icon-circle {
    background: linear-gradient(135deg, #00BCD4, #26C6DA);
}

.spk-doc-card:nth-child(3) .spk-doc-icon-circle {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.spk-doc-card:nth-child(4) .spk-doc-icon-circle {
    background: linear-gradient(135deg, #FFC107, #FFCA28);
}

.spk-doc-card:nth-child(5) .spk-doc-icon-circle {
    background: linear-gradient(135deg, #9C27B0, #AB47BC);
}

.spk-doc-card:nth-child(6) .spk-doc-icon-circle {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.spk-doc-card:nth-child(7) .spk-doc-icon-circle {
    background: linear-gradient(135deg, #E91E63, #EC407A);
}

.spk-doc-card:hover .spk-doc-icon-circle {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.spk-doc-icon {
    font-size: 30px;
    color: white;
}

.spk-doc-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.spk-doc-count {
    display: inline-block;
    background: #26c976;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
.spk-floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.spk-shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(102, 187, 106, 0.1));
    top: 15%;
    right: 5%;
}

.spk-shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(66, 165, 245, 0.1));
    bottom: 20%;
    left: 8%;
    animation-delay: -3s;
}

.spk-shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(171, 71, 188, 0.1));
    top: 50%;
    left: 3%;
    animation-delay: -6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spk-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .spk-documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spk-admission-section {
        padding: 60px 0;
    }

    .spk-admission-hero {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .spk-hero-title {
        font-size: 2rem;
    }

    .spk-info-card {
        padding: 35px 25px;
    }

    .spk-documents-wrapper {
        padding: 40px 25px;
    }

    .spk-documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}