* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    /* Removed display: none; to show navigation */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.college-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0.5rem;
}

.college-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.department-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #7f8c8d;
    line-height: 1.2;
}

.college-logo {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.college-logo:hover {
    transform: scale(1.05);
}

#certificateCanvas {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link.active {
    color: #e74c3c;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section - Premium Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="18" cy="18" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    animation: particleFloat 20s linear infinite;
}

/* Circular Slideshow - Amazing Design */
.circular-slideshow {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.9;
}

.slideshow-container {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 12;
}

.circular-track {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s ease-in-out;
}

.slide-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* Initial positioning - will be adjusted by JavaScript */
.slide-item {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-item:hover {
    transform: scale(1.2) !important;
    border-color: #ff6b6b;
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.5);
    z-index: 10;
}

.slide-item:hover img {
    transform: scale(1.1);
}

.slide-item.active {
    border-color: #feca57;
    box-shadow: 0 20px 40px rgba(254, 202, 87, 0.6);
    transform: scale(1.15) !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(255, 107, 107, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-item:hover .slide-overlay {
    opacity: 1;
}

.slide-overlay i {
    font-size: 2rem;
    color: white;
    animation: pulse 1.5s infinite;
}

/* Center Content */
.slideshow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: centerPulse 3s ease-in-out infinite;
    z-index: 15;
}

.center-college-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.center-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.center-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation Dots */
.slideshow-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Slideshow Animations */
@keyframes rotateTrack {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
    }
}

/* Floating Animation for Individual Slides */
.slide-item:nth-child(1) {
    animation: rotateSlide1 20s linear infinite, float1 4s ease-in-out infinite;
}

.slide-item:nth-child(2) {
    animation: rotateSlide2 20s linear infinite, float2 4.5s ease-in-out infinite;
}

.slide-item:nth-child(3) {
    animation: rotateSlide3 20s linear infinite, float3 5s ease-in-out infinite;
}

.slide-item:nth-child(4) {
    animation: rotateSlide4 20s linear infinite, float4 4.2s ease-in-out infinite;
}

.slide-item:nth-child(5) {
    animation: rotateSlide5 20s linear infinite, float5 4.8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-9px) scale(1.02); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-11px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 2rem;
    margin-left: auto;
    margin-right: 0;
    
    width: 60%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.hero-badge1 {
    display: inline-block;

    background: linear-gradient(
        270deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #7b2cff
    );
    background-size: 600% 600%;

    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;

    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;

    padding: 1.2rem 2rem;
    font-size: 1.6rem;   /* NOW it will increase */

    margin-bottom: 2rem;

    box-shadow: 
        0 0 12px rgba(255, 255, 255, 0.35),
        0 0 25px rgba(255, 0, 128, 0.35);

    animation:
        slideInDown 1s ease-out,
        gradientFlow 6s ease infinite,
        softBlink 1.8s ease-in-out infinite;
}

/* Gradient movement */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Soft blink / pulse (professional) */
@keyframes softBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.92;
        transform: scale(1.04);
    }
}


.badge-text {
    /* font-size: 1rem; */
    font-weight: 600;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-highlight2 {
    /* Stronger vibrant gradient */
    background: linear-gradient(
        310deg,
        #ff1744,
        #ff9100,
        #ffee58,
        #00e5ff,
        #7c4dff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.title-highlight1 {
    display: inline-block;

    /* Stronger vibrant gradient */
    background: linear-gradient(
        170deg,
        #ff1744,
        #ff9100,
        #ffee58,
        #00e5ff,
        #7c4dff
    );
    background-size: 600% 100%;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 900;
    letter-spacing: 1.2px;

    /* Crisp highlight edge */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.55),
        0 2px 0 rgba(0,0,0,0.25);

    /* Hero animations */
    animation:
        slideInLeft 1s ease-out 0.2s both,
        heroGradientFlow 5s linear infinite,
        heroTextPulseStrong 1.8s ease-in-out infinite,
        heroHueShift 8s linear infinite;
}

/* Flowing gradient */
@keyframes heroGradientFlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.title-highlight {
    letter-spacing: 2px;
    background: linear-gradient(
        190deg,
        #ff1744,
        #ff9100,
        #ffee58,
        #00e5ff,
        #7c4dff
    );
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: slideInLeft 1s ease-out 0.2s both;
}

/* Stronger pulse (font energy) */
@keyframes heroTextPulseStrong {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

/* Color-changing font effect */
@keyframes heroHueShift {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Smooth hero gradient flow
@keyframes heroGradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
} */

/* Subtle hero pulse (no blur) */
@keyframes heroTextPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.96;
        transform: scale(1.03);
    }
}


.title-main {
    display: block;
    animation: slideInRight 1s ease-out 0.4s both;
}

.workshop-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.subtitle-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.subtitle-icon i {
    font-size: 1.5rem;
    color: white;
}

.workshop-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #f8f9fa;
    max-width: 600px;
    line-height: 1.3;
}

.college-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.8s both;
}

.college-logo-hero {
    height: 60px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.college-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 1s both;
}

/* Premium Info Cards */
.info-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.card-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.urgent {
    background: linear-gradient(45deg, #ff4757, #ff3838);
    color: white;
    animation: pulse 1.5s infinite;
}

.card-badge.success {
    background: linear-gradient(45deg, #2ed573, #1e90ff);
    color: white;
}

.card-badge:not(.urgent):not(.success) {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* CTA Section */
.cta-container {
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 1.2s both;
}

.cta-button-primary {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: gradientMove 3s ease infinite;
    margin-bottom: 1rem;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #feca57;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Highlights Section */
.highlights-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.highlights-section::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="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.highlight-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.highlight-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.highlight-icon i {
    font-size: 2rem;
    color: white;
}

.highlight-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Workshop Details Section - Modern Design */
.workshop-details-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
}

.workshop-details-section::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 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,2 52,16 52,44 30,58 8,44 8,16" fill="none" stroke="rgba(102, 126, 234, 0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.subsection-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.subsection-title i {
    color: #667eea;
    font-size: 2rem;
}

.subsection-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(45deg, #667eea, transparent);
    border-radius: 2px;
    margin-left: 2rem;
}

/* Team Section - Enhanced Instructor Profile */
.team-section {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

/* Main Instructor Profile */
.main-instructor-profile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
}

.main-instructor-profile::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="instructor-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23instructor-pattern)"/></svg>');
    opacity: 0.3;
}

.instructor-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Instructor Avatar with Rings */
.instructor-avatar-container {
    position: relative;
}

.instructor-avatar {
    position: relative;
    width: 200px;
    height: 200px;
}

.avatar-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
    padding: 4px;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.avatar-image i {
    font-size: 4rem;
    color: white;
}

.instructor-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Achievement Rings */
.achievement-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 180px;
    height: 180px;
    animation: ringRotate1 8s linear infinite;
    border-top-color: #ff6b6b;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation: ringRotate2 12s linear infinite reverse;
    border-right-color: #feca57;
}

.ring-3 {
    width: 220px;
    height: 220px;
    animation: ringRotate3 15s linear infinite;
    border-bottom-color: #667eea;
}

/* Floating Badges */
.expertise-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.badge-floating {
    position: absolute;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 10px;
    left: 10px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10px;
    right: 10px;
    animation-delay: 2s;
}

/* Instructor Introduction */
.instructor-intro {
    color: white;
}

.instructor-title1 h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e76005; /* Deep navy blue */
    line-height: 1.2;
}


.instructor-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #57fe65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.credentials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.credential-item i {
    font-size: 2.5rem;
    color: #feca57;
    margin-bottom: 1rem;
}

.credential-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.credential-item p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Mini Titles */
.section-mini-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-mini-title i {
    color: #feca57;
    font-size: 1.5rem;
}

/* Leadership Section */
.leadership-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.leadership-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.leadership-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.leadership-card .card-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leadership-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.leadership-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.leadership-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.stat-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #feca57;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Expertise Cloud */
.expertise-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.expertise-tag {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.expertise-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.expertise-tag:hover::before {
    left: 100%;
}

.level-expert {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.level-advanced {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.expertise-tag:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Blog Section */
.blog-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.blog-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-icon i {
    font-size: 2rem;
    color: white;
}

.blog-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.blog-link {
    color: #feca57;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: white;
    transform: translateX(5px);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Supporting Team - Enhanced Design */
.supporting-team {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.supporting-team::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="team-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(102, 126, 234, 0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23team-pattern)"/></svg>');
    opacity: 0.5;
}

.supporting-team .section-mini-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.supporting-team .section-mini-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.supporting-team .section-mini-title i {
    color: #667eea;
}

/* Academic Team Container */
.academic-team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Team Member Cards */
.team-member-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.team-member-card.convener::before {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
}

.team-member-card.coordinator::before {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.team-member-card.co-coordinator::before {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.team-member-card.convener {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #e74c3c, #f39c12) border-box;
}

.team-member-card.convener .member-avatar {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.team-member-card.convener .member-name {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-member-card.convener:hover {
    border-color: #e74c3c;
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

.team-member-card.coordinator:hover,
.team-member-card.co-coordinator:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.team-member-card.convener:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #e74c3c;
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

/* Member Header */
.member-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.member-avatar {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

/* Member Photo Styles */
.member-avatar .member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
    display: block;
}

.member-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b, #feca57);
    background-size: 400% 400%;
    animation: avatarGlow 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Adjust avatar size for photos */
.team-member-card .member-avatar {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-member-card:hover .member-avatar::after {
    opacity: 1;
}

/* Photo hover effect */
.team-member-card:hover .member-avatar .member-photo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Ensure photos maintain circular shape */
.member-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Role Badges */
.member-role-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.convener-badge {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.coordinator-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.co-coordinator-badge {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.member-role-badge i {
    font-size: 1rem;
}

/* Member Details */
.member-details {
    text-align: left;
}

.member-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #2c3e50, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-title {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Member Expertise */
.member-expertise {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: linear-gradient(45deg, #e9ecef, #dee2e6);
    transform: translateX(5px);
    border-left-color: #ff6b6b;
}

.expertise-item i {
    color: #667eea;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.expertise-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Member Contribution */
.member-contribution {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.member-contribution p {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Team Collaboration Message */
.team-collaboration-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-collaboration-message::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="collab-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23collab-pattern)"/></svg>');
    opacity: 0.3;
}

.collaboration-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.collaboration-icon i {
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
}

.collaboration-content {
    position: relative;
    z-index: 2;
}

.collaboration-content h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.collaboration-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Animations */
@keyframes avatarGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive Design for Supporting Team */
@media (max-width: 1200px) {
    .academic-team-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .supporting-team {
        padding: 2rem;
    }
    
    .academic-team-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member-card {
        padding: 2rem;
    }
    
    .member-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
    }
    
    .member-avatar i {
        font-size: 2rem;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .team-collaboration-message {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .collaboration-icon {
        width: 80px;
        height: 80px;
    }
    
    .collaboration-icon i {
        font-size: 2.5rem;
    }
    
    .collaboration-content h5 {
        font-size: 1.5rem;
    }
    
    .collaboration-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .supporting-team {
        padding: 1.5rem;
    }
    
    .team-member-card {
        padding: 1.5rem;
    }
    
    .member-role-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-title {
        font-size: 1rem;
    }
    
    .expertise-item {
        padding: 0.6rem 1rem;
    }
    
    .member-contribution {
        padding: 1rem;
    }
    
    .team-collaboration-message {
        padding: 1.5rem;
    }
    
    .collaboration-icon {
        width: 60px;
        height: 60px;
    }
    
    .collaboration-icon i {
        font-size: 2rem;
    }
    
    .collaboration-content h5 {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes ringRotate1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotate2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes ringRotate3 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Modern Objectives */
.objectives-section {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.objectives-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.objective-card.modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #667eea;
    position: relative;
    overflow: hidden;
}

.objective-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.objective-card.modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.objective-card.modern:hover::after {
    left: 100%;
}

.objective-card.modern:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-left-color: #ff6b6b;
}

.objective-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.objective-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b, #feca57);
    background-size: 400% 400%;
    animation: numberGlow 3s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.objective-card.modern:hover .objective-number::before {
    opacity: 1;
}

.objective-content {
    flex: 1;
}

.objective-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.objective-card.modern:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.objective-icon i {
    font-size: 1.3rem;
    color: white;
}

.objective-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.objective-content h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #ff6b6b);
    transition: width 0.4s ease;
}

.objective-card.modern:hover .objective-content h4::after {
    width: 50px;
}

.objective-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Modern Schedule Section */
.schedule-section {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.schedule-timeline-modern {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2, #ff6b6b);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.day-card-modern {
    position: relative;
    margin-bottom: 4rem;
    z-index: 2;
}

.day-card-modern:nth-child(even) .day-content-modern {
    margin-left: auto;
    margin-right: 0;
}

.day-card-modern:nth-child(odd) .day-content-modern {
    margin-left: 0;
    margin-right: auto;
}

.day-number {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    z-index: 3;
}

.day-content-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    width: 45%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.day-content-modern:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.day-header-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.day-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.day-icon i {
    font-size: 1.5rem;
    color: white;
}

.day-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.day-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    margin: 0;
}

.day-activities {
    display: grid;
    gap: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.activity-item:hover {
    background: #f8f9fa;
    border-color: #667eea;
    transform: translateX(5px);
}

.activity-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 1rem;
    color: white;
}

.activity-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.activity-content p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Modern Outcomes Section */
.outcomes-section {
    position: relative;
    z-index: 2;
}

.outcomes-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.outcome-card-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.outcome-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.outcome-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}

.outcome-icon {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.outcome-icon i {
    font-size: 2rem;
    color: white;
}

.outcome-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.outcome-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.skill-level {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skill-level span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar {
    height: 8px;
    background: #f1f2f6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Enhanced Animations */
@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
    }
}

.animate-slide-up {
    animation: animate-slide-up 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: animate-fade-in 1s ease-out;
}



/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

/* Registration Section */
.registration-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.registration-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    transition: color 0.3s ease;
}

.form-group input:focus + .form-icon,
.form-group select:focus + .form-icon {
    color: #e74c3c;
}

.payment-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    color: white;
}

.payment-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.qr-code-container img {
    width: 200px;
    height: 200px;
    border: 4px solid white;
    border-radius: 15px;
    margin: 1rem 0;
    background: white;
    padding: 10px;
}

.payment-amount {
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
}

.file-upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-area:hover {
    border-color: #e74c3c;
    background: #fff5f5;
}

.file-upload-area i {
    font-size: 2rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    display: block;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Feedback Section */
.feedback-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feedback-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-access {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.access-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.feedback-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out;
}

.welcome-message {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.welcome-message h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rating-section {
    margin-bottom: 3rem;
}

.rating-section h4 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.rating-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.rating-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.star-rating .fas.fa-star {
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-rating .fas.fa-star:hover,
.star-rating .fas.fa-star.hover {
    color: #f39c12;
    transform: scale(1.1);
}

.star-rating .fas.fa-star.active {
    color: #f39c12;
}

.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background: #3498db;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    margin-left: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    vertical-align: middle;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    min-width: 140px;
    text-align: center;
}

.radio-option:hover {
    border-color: #6366f1;
    background-color: #f8fafc;
}

.radio-option input[type="radio"] {
    margin-right: 0.75rem;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background-color: #6366f1;
    border-color: #6366f1;
}

.radio-option input[type="radio"]:checked + .radio-custom + .radio-text {
    color: #6366f1;
    font-weight: 600;
}

.feedback-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.feedback-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
}

.submit-feedback-btn {
    width: 100%;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-feedback-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.submit-feedback-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.feedback-success {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out;
}

.feedback-success i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

.feedback-success h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.feedback-success p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInDown 0.3s ease-out;
}

.alert-error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

.alert-success {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.alert i {
    font-size: 1.2rem;
}

/* Participant Card */
.participant-card {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.participant-card h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.participant-card p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.participant-card strong {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

/* Feedback Form Container */
.feedback-form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
}

.rating-section {
    margin-bottom: 2rem;
}

.rating-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.rating-group {
    margin-bottom: 2rem;
}

.rating-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.text-feedback-section {
    margin-top: 2rem;
}

.text-feedback-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.access-btn {
    width: 100%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

/* Certificate Modal Styles */
.certificate-modal {
    max-width: 600px;
    text-align: center;
}

.certificate-modal .success-animation i {
    font-size: 4rem;
    color: #f39c12;
    animation: bounce 1s ease-in-out;
}

.certificate-actions {
    margin: 2rem 0;
}

.download-again-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.download-again-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.social-sharing {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.social-sharing h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.1rem;
}

.social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.social-btn.linkedin:hover {
    background: #005885;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.facebook:hover {
    background: #166fe5;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn.twitter:hover {
    background: #0d8bd9;
}

.social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.social-btn.whatsapp:hover {
    background: #20ba5a;
}

.social-btn.copy {
    background: #6c757d;
    color: white;
}

.social-btn.copy:hover {
    background: #545b62;
}

/* Responsive Social Buttons */
@media (max-width: 768px) {
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-btn {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .certificate-modal {
        margin: 5% auto;
        width: 95%;
    }
}
@media (max-width: 768px) {
    .feedback-form-wrapper,
    .feedback-access {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .welcome-message {
        padding: 1.5rem;
    }
    
    .welcome-message h3 {
        font-size: 1.5rem;
    }
    
    .star-rating {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-group {
        padding: 1rem;
    }
}
.certificate-section {
    padding: 6rem 0;
    background: white;
}

.certificate-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.download-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

/* Admin Styles */
.admin-container {
    min-height: 100vh;
    padding-top: 80px;
}

.admin-login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.login-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    margin: 0 2rem;
}

.login-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.admin-dashboard {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-dashboard h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: #3498db;
}

.stat-card.approved i {
    color: #27ae60;
}

.stat-card.pending i {
    color: #f39c12;
}

.stat-card.feedback i {
    color: #9b59b6;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #2c3e50;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Feedback Table Styles */
.feedback-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-display {
    display: flex;
    gap: 2px;
}

.rating-display .fas.fa-star {
    color: #ddd;
    font-size: 0.9rem;
}

.rating-display .fas.fa-star.active {
    color: #f39c12;
}

.recommend-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.recommend-yes {
    background: #27ae60;
    color: white;
}

.recommend-no {
    background: #e74c3c;
    color: white;
}

/* Feedback Details Modal */
.feedback-details {
    text-align: left;
    margin: 1rem 0;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.rating-item {
    text-align: center;
}

.rating-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.rating-stars .fas.fa-star {
    color: #ddd;
    font-size: 1.2rem;
}

.rating-stars .fas.fa-star.active {
    color: #f39c12;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.stat-info p {
    color: #7f8c8d;
    font-weight: 500;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.table-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.export-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.registrations-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.registrations-table th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

.registrations-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

.registrations-table tr:hover {
    background: #f8f9fa;
}

.view-btn, .approve-btn, .reject-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn {
    background: #3498db;
    color: white;
}

.view-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.approve-btn {
    background: #27ae60;
    color: white;
}

.approve-btn:hover {
    background: #229954;
    transform: translateY(-1px);
}

.reject-btn {
    background: #e74c3c;
    color: white;
}

.reject-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #f39c12;
    color: white;
}

.status-approved {
    background: #27ae60;
    color: white;
}

.status-rejected {
    background: #e74c3c;
    color: white;
}

.registration-details {
    text-align: left;
    margin: 1rem 0;
}

.detail-row {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.detail-row strong {
    color: #2c3e50;
}

.detail-row a {
    color: #3498db;
    text-decoration: none;
}

.detail-row a:hover {
    text-decoration: underline;
}

.registration-closed {
    text-align: center;
    padding: 3rem;
    background: #fff5f5;
    border-radius: 15px;
    border: 2px solid #e74c3c;
}

.registration-closed i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.registration-closed h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.registration-closed p {
    color: #7f8c8d;
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .admin-dashboard {
        padding: 1rem;
    }
    
    .admin-dashboard h1 {
        font-size: 2rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .table-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .registrations-table th,
    .registrations-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .view-btn, .approve-btn, .reject-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-overlay {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content-large {
    background-color: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 1rem;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.8rem;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.modal-footer {
    padding-top: 1rem;
    border-top: 2px solid #eee;
    text-align: center;
}

.instructions-content h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.instructions-content h4 {
    color: #2980b9;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.instructions-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    text-align: left;
}

.instructions-content li {
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.note {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.agreement {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #e8f4fc;
    border-radius: 10px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #27ae60;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.success-animation i {
    font-size: 4rem;
    color: #27ae60;
    animation: bounce 1s ease-in-out;
}

.modal-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #2c3e50;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: #2c3e50;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .college-name {
        font-size: 1.5rem;
    }
    
    .workshop-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .registration-form-container {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .registrations-table {
        overflow-x: auto;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Responsive Styles for Workshop Details */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .workshop-subtitle {
        font-size: 1.4rem;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-card {
        padding: 1.5rem;
    }
    
    .schedule-timeline {
        grid-template-columns: 1fr;
    }
    
    .day-header {
        padding: 1.5rem;
    }
    
    .day-header h4 {
        font-size: 1.5rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-details-section {
        padding: 4rem 0;
    }
    
    .organizers-section,
    .objectives-section,
    .schedule-section,
    .outcomes-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .workshop-subtitle {
        font-size: 1.2rem;
    }
    
    .college-name {
        font-size: 1.5rem;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .organizer-card,
    .objective-card {
        padding: 1rem;
    }
    
    .day-content {
        padding: 1.5rem;
    }
    
    .outcome-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .organizers-section h3,
    .objectives-section h3,
    .schedule-section h3,
    .outcomes-section h3 {
        font-size: 1.5rem;
    }
}

/* Additional animations for better UX */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Enhanced hover effects */
.info-card:hover,
.organizer-card:hover,
.objective-card:hover,
.day-card:hover,
.outcome-item:hover {
    transform: translateY(-5px);
}

/* Loading animation for dynamic content */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight,
    .title-main {
        font-size: 2.5rem;
    }
    
    .workshop-subtitle {
        font-size: 1.2rem;
    }
    
    .college-name {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .info-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .subsection-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .subsection-title::after {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card.featured {
        transform: none;
    }
    
    .objectives-container {
        grid-template-columns: 1fr;
    }
    
    .objective-card.modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .day-card-modern:nth-child(even) .day-content-modern,
    .day-card-modern:nth-child(odd) .day-content-modern {
        width: 100%;
        margin: 0;
    }
    
    .day-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 2rem;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .day-header-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .outcomes-modern {
        grid-template-columns: 1fr;
    }
    
    .workshop-details-section {
        padding: 4rem 0;
    }
    
    .team-section,
    .objectives-section,
    .schedule-section,
    .outcomes-section {
        margin-bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight,
    .title-main {
        font-size: 2rem;
    }
    
    .workshop-subtitle {
        font-size: 1rem;
    }
    
    .college-name {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .info-cards-container {
        grid-template-columns: 1fr;
    }
    
    .premium-card {
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .cta-button-primary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        padding: 2rem 1rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon i {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-avatar i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
    
    .objective-card.modern {
        padding: 2rem;
    }
    
    .objective-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .day-content-modern {
        padding: 2rem;
    }
    
    .day-header-modern {
        gap: 0.8rem;
    }
    
    .day-icon {
        width: 50px;
        height: 50px;
    }
    
    .day-icon i {
        font-size: 1.2rem;
    }
    
    .day-info h4 {
        font-size: 1.5rem;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .outcome-card-modern {
        padding: 2rem;
    }
    
    .outcome-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .outcome-icon i {
        font-size: 1.5rem;
    }
    
    .outcome-content {
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .hero-particles,
    .hero::before,
    .workshop-details-section::before,
    .highlights-section::before {
        display: none;
    }
    
    .hero {
        background: #667eea;
        color: white;
        padding: 2rem;
    }
    
    .premium-card,
    .team-card,
    .objective-card,
    .day-content-modern,
    .outcome-card-modern {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .premium-card,
    .team-card,
    .objective-card,
    .day-content-modern,
    .outcome-card-modern {
        border: 2px solid #000;
    }
    
    .card-icon,
    .highlight-icon,
    .team-avatar i,
    .objective-icon,
    .day-icon,
    .outcome-icon {
        background: #000;
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Circular Slideshow Responsive Design */
@media (max-width: 1200px) {
    .circular-slideshow {
        left: 5%;
    }
    
    .slideshow-container {
        width: 350px;
        height: 350px;
    }
    
    .slide-item {
        width: 100px;
        height: 100px;
    }
    
    .slideshow-center {
        width: 130px;
        height: 130px;
    }
    
    .center-college-logo {
        width: 40px;
        height: 40px;
    }
    
    .center-text h3 {
        font-size: 1rem;
    }
    
    .center-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .circular-slideshow {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 3rem;
        order: -1;
    }
    
    .slideshow-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .slide-item {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }
    
    .slide-overlay i {
        font-size: 1.5rem;
    }
    
    .slideshow-center {
        width: 100px;
        height: 100px;
    }
    
    .center-college-logo {
        width: 30px;
        height: 30px;
    }
    
    .center-text h3 {
        font-size: 0.9rem;
    }
    
    .center-text p {
        font-size: 0.7rem;
    }
    
    .slideshow-dots {
        bottom: -40px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-content {
        width: 100%;
        margin: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        width: 250px;
        height: 250px;
    }
    
    .slide-item {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .slide-overlay i {
        font-size: 1.2rem;
    }
    
    .slideshow-center {
        width: 80px;
        height: 80px;
    }
    
    .center-college-logo {
        width: 25px;
        height: 25px;
    }
    
    .center-text h3 {
        font-size: 0.8rem;
    }
    
    .center-text p {
        font-size: 0.6rem;
    }
    
    .slideshow-dots {
        bottom: -30px;
        gap: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Enhanced Visual Effects */
.slide-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #667eea, #764ba2);
    background-size: 400% 400%;
    animation: gradientRotate 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-item:hover::before {
    opacity: 1;
}

.slide-item.active::before {
    opacity: 0.7;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sparkle Effect */
.slideshow-container::after {
    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="sparkles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle><circle cx="15" cy="15" r="0.5" fill="rgba(255,255,255,0.5)"><animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite" begin="0.5s"/></circle></pattern></defs><rect width="100%" height="100%" fill="url(%23sparkles)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
    animation: sparkleRotate 15s linear infinite;
}

@keyframes sparkleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Performance Optimizations */
.slide-item {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.circular-track {
    will-change: transform;
    backface-visibility: hidden;
}

.slideshow-center {
    will-change: transform;
    backface-visibility: hidden;
}

/* Accessibility Improvements */
.slide-item:focus {
    outline: 3px solid #feca57;
    outline-offset: 3px;
}

.dot:focus {
    outline: 2px solid #feca57;
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .circular-track,
    .slide-item,
    .slideshow-center,
    .slideshow-container::after {
        animation: none !important;
    }
    
    .slide-item {
        transition: transform 0.1s ease;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .slide-item {
        border-color: #fff;
        border-width: 4px;
    }
    
    .slideshow-center {
        border-color: #fff;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .dot {
        background: #fff;
        border: 2px solid #000;
    }
}
/* Instructor Profile Responsive Design */
@media (max-width: 1024px) {
    .instructor-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .instructor-avatar {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .avatar-image {
        width: 130px;
        height: 130px;
    }
    
    .avatar-image i {
        font-size: 3rem;
    }
    
    .ring-1 { width: 160px; height: 160px; }
    .ring-2 { width: 180px; height: 180px; }
    .ring-3 { width: 200px; height: 200px; }
    
    .instructor-title h2 {
        font-size: 2.5rem;
    }
    
    .instructor-subtitle {
        font-size: 1.3rem;
    }
    
    .credentials-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-instructor-profile {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .instructor-avatar {
        width: 150px;
        height: 150px;
    }
    
    .avatar-image {
        width: 100px;
        height: 100px;
    }
    
    .instructor-photo {
        border-width: 2px;
    }
    
    .avatar-image i {
        font-size: 2.5rem;
    }
    
    .ring-1 { width: 130px; height: 130px; }
    .ring-2 { width: 150px; height: 150px; }
    .ring-3 { width: 170px; height: 170px; }
    
    .badge-floating {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .instructor-title h2 {
        font-size: 2rem;
    }
    
    .instructor-subtitle {
        font-size: 1.2rem;
    }
    
    .section-mini-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .expertise-cloud {
        gap: 0.5rem;
    }
    
    .expertise-tag {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .blog-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .supporting-team {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-instructor-profile {
        padding: 1.5rem;
    }
    
    .instructor-avatar {
        width: 120px;
        height: 120px;
    }
    
    .avatar-image {
        width: 80px;
        height: 80px;
    }
    
    .instructor-photo {
        border-width: 2px;
    }
    
    .avatar-image i {
        font-size: 2rem;
    }
    
    .ring-1 { width: 100px; height: 100px; }
    .ring-2 { width: 120px; height: 120px; }
    .ring-3 { width: 140px; height: 140px; }
    
    .instructor-title h2 {
        font-size: 1.8rem;
    }
    
    .instructor-subtitle {
        font-size: 1rem;
    }
    
    .credential-item {
        padding: 1.5rem;
    }
    
    .credential-item i {
        font-size: 2rem;
    }
    
    .credential-item h4 {
        font-size: 1.3rem;
    }
    
    .leadership-card {
        padding: 1.5rem;
    }
    
    .leadership-card .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .leadership-card .card-icon i {
        font-size: 1.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-icon {
        width: 60px;
        height: 60px;
    }
    
    .blog-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .supporting-team {
        padding: 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
}

/* Counter Animation for Stats */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 1s ease-out;
}

/* Pulse Animation for Important Elements */
@keyframes expertPulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
    }
}

.level-expert {
    animation: expertPulse 3s ease-in-out infinite;
}

/* Shimmer Effect for Premium Cards */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.credential-item::after,
.leadership-card::after,
.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Accessibility Improvements */
.instructor-avatar:focus,
.stat-item:focus,
.expertise-tag:focus,
.benefit-item:focus {
    outline: 3px solid #feca57;
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .main-instructor-profile {
        background: #667eea;
        color: white;
    }
    
    .achievement-rings,
    .expertise-badges {
        display: none;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Animation for objectives number glow */
@keyframes numberGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced objective card entrance animation */
.objective-card.modern {
    opacity: 0;
    transform: translateY(30px);
    animation: objectiveSlideIn 0.6s ease-out forwards;
}

.objective-card.modern:nth-child(1) { animation-delay: 0.1s; }
.objective-card.modern:nth-child(2) { animation-delay: 0.2s; }
.objective-card.modern:nth-child(3) { animation-delay: 0.3s; }
.objective-card.modern:nth-child(4) { animation-delay: 0.4s; }
.objective-card.modern:nth-child(5) { animation-delay: 0.5s; }

@keyframes objectiveSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::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="page-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23page-pattern)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Navigation Active State */
.nav-link.active {
    color: #e74c3c;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* CTA Button as Link */
.cta-button-primary {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: gradientMove 3s ease infinite;
    margin-bottom: 1rem;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
    text-decoration: none;
    color: white;
}

/* Responsive Page Headers */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}
/* Certificate Page Styles */
.certificate-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.certificate-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.certificate-access {
    background: white;
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.certificate-access::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="cert-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(102, 126, 234, 0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cert-pattern)"/></svg>');
    opacity: 0.3;
}

.certificate-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
    animation: certificateFloat 3s ease-in-out infinite;
}

.certificate-icon i {
    font-size: 4rem;
    color: white;
}

.certificate-access h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.certificate-access p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.certificate-form {
    max-width: 400px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.certificate-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.certificate-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.certificate-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.certificate-form input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.certificate-form .form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 1.2rem;
}

.download-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.download-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.download-btn.loading {
    pointer-events: none;
}

.download-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.certificate-info {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.certificate-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.certificate-info h4::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.certificate-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certificate-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #2c3e50;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.certificate-info li:last-child {
    border-bottom: none;
}

.certificate-info li i {
    color: #2ecc71;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Certificate Preview Styles */
.certificate-preview {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.certificate-preview.show {
    opacity: 1;
    transform: translateY(0);
}

.certificate-preview h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
}

.certificate-preview h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

#certificateCanvas {
    border: 3px solid #667eea;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

#certificateCanvas:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.certificate-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.download-certificate-btn {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.download-certificate-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.4);
}

.download-certificate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Social Share Styles */
.social-share {
    text-align: center;
}

.social-share h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.linkedin {
    background: linear-gradient(45deg, #0077b5, #005885);
}

.social-btn.facebook {
    background: linear-gradient(45deg, #1877f2, #0d5aa7);
}

.social-btn.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.social-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #1ebe57);
}

/* Certificate Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes certificateFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-success {
    animation: successPulse 2s infinite;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

/* Key Features Preview Section - Home Page */
.key-features-preview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.key-features-preview-section::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="preview-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102, 126, 234, 0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23preview-dots)"/></svg>');
}

.features-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-preview-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-preview-card:hover::before {
    opacity: 1;
}

.feature-preview-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.feature-preview-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-preview-icon i {
    font-size: 2rem;
    color: white;
}

.feature-preview-content {
    position: relative;
    z-index: 2;
}

.feature-preview-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-preview-content p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    z-index: 3;
}

/* Features CTA */
.features-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.features-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="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

/* Instructor Link Section - About Page */
.instructor-link-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.instructor-preview-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    position: relative;
}

.instructor-preview-card::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="instructor-preview-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23instructor-preview-pattern)"/></svg>');
    opacity: 0.3;
}

.instructor-preview-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.instructor-preview-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.instructor-preview-icon i {
    font-size: 3rem;
    color: #feca57;
}

.instructor-preview-text {
    color: white;
}

.instructor-preview-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.instructor-preview-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.instructor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.instructor-preview-action {
    display: flex;
    align-items: center;
}

.instructor-link-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    font-size: 1.1rem;
}

.instructor-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.instructor-link-btn i:last-child {
    transition: transform 0.3s ease;
}

.instructor-link-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design for Instructor Preview */
@media (max-width: 768px) {
    .instructor-preview-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .instructor-preview-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .instructor-preview-icon i {
        font-size: 2.5rem;
    }
    
    .instructor-preview-text h3 {
        font-size: 1.5rem;
    }
    
    .instructor-preview-text p {
        font-size: 1rem;
    }
    
    .instructor-highlights {
        justify-content: center;
    }
    
    .instructor-link-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .instructor-preview-content {
        padding: 1.5rem;
    }
    
    .instructor-preview-text h3 {
        font-size: 1.3rem;
    }
    
    .instructor-link-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
.instructor-details-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.instructor-details-section::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 60 60"><defs><pattern id="instructor-hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,2 52,16 52,44 30,58 8,44 8,16" fill="none" stroke="rgba(102, 126, 234, 0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23instructor-hexagons)"/></svg>');
}

/* Instructor CTA Section */
.instructor-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.instructor-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="instructor-cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23instructor-cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
    font-size: 3rem;
    color: #feca57;
}

.cta-text {
    color: white;
}

.cta-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-large {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Patron Details Section - Dedicated Page */
.patron-details-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.patron-details-section::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 60 60"><defs><pattern id="patron-hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,2 52,16 52,44 30,58 8,44 8,16" fill="none" stroke="rgba(102, 126, 234, 0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23patron-hexagons)"/></svg>');
}

/* Patron Cards */
.patron-card {
    background: white;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.patron-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.patron-card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.patron-card-header::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="patron-header-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23patron-header-pattern)"/></svg>');
    opacity: 0.3;
}

.patron-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.patron-icon i {
    font-size: 3rem;
    color: #feca57;
}

.patron-title {
    color: white;
    position: relative;
    z-index: 2;
}

.patron-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.patron-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.patron-card-content {
    padding: 3rem;
}

.patron-text {
    margin-bottom: 2rem;
}

.patron-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: justify;
}

/* Department Card Specific Styles */
.department-card .patron-card-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.patron-highlight-bar {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.patron-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    border-color: #3498db;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.achievement-icon {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 1.2rem;
    color: white;
}

.achievement-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.achievement-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.patron-expansion {
    margin-top: 3rem;
}

.patron-expansion h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.patron-expansion h4::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.expansion-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.1);
}

.timeline-year {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
}

.department-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(41, 128, 185, 0.05));
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.feature-highlight i {
    color: #3498db;
    font-size: 1.2rem;
}

.feature-highlight span {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Society Card Specific Styles */
.society-card .patron-card-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.society-card .patron-highlight-bar {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.society-legacy {
    margin-top: 2rem;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
}

.visionary-leaders {
    margin: 3rem 0;
}

.visionary-leaders h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visionary-leaders h4::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.leader-item:hover {
    transform: translateY(-3px);
    border-color: #e74c3c;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.1);
}

.leader-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leader-icon i {
    font-size: 1.5rem;
    color: white;
}

.leader-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.leader-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.society-recognition {
    margin-top: 3rem;
}

.recognition-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(231, 76, 60, 0.1);
}

.recognition-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recognition-icon i {
    font-size: 2rem;
    color: white;
}

.recognition-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.recognition-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    text-align: justify;
    margin: 0;
}

/* College Card Specific Styles */
.college-card .patron-card-header {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.college-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.achievement-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(34, 153, 84, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}

.achievement-highlight:hover {
    transform: translateY(-3px);
    border-color: #27ae60;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2);
}

.highlight-icon {
    background: linear-gradient(45deg, #27ae60, #229954);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

.programs-offered {
    margin: 3rem 0;
}

.programs-offered h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.programs-offered h4::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #27ae60, #229954);
    border-radius: 2px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.program-category {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05), rgba(34, 153, 84, 0.05));
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
}

.program-category:hover {
    transform: translateY(-3px);
    border-color: #27ae60;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.1);
}

.program-category h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.program-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.program-tag {
    background: linear-gradient(45deg, #27ae60, #229954);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faculty-excellence {
    margin: 3rem 0;
}

.faculty-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(34, 153, 84, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(39, 174, 96, 0.2);
}

.faculty-icon {
    background: linear-gradient(45deg, #27ae60, #229954);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faculty-icon i {
    font-size: 2rem;
    color: white;
}

.faculty-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.faculty-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

.alumni-success {
    margin-top: 3rem;
}

.alumni-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alumni-success h4::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #27ae60, #229954);
    border-radius: 2px;
}

.success-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05), rgba(34, 153, 84, 0.05));
    border-radius: 10px;
    border: 2px solid rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
}

.success-item:hover {
    transform: translateY(-2px);
    border-color: #27ae60;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
}

.success-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.success-item span {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Patron CTA Section */
.patron-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.patron-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="patron-cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23patron-cta-pattern)"/></svg>');
    opacity: 0.3;
}

/* Resource Persons Section - Simple */
.resource-persons-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.resource-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resource-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.resource-person-simple {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid #e74c3c;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.resource-person-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
    opacity: 0.5;
}

.resource-person-simple h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.resource-designation {
    font-size: 1.2rem;
    color: #34495e;
    font-weight: 500;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
}

/* Governing Council Committee Section */
.governing-council-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.council-header {
    text-align: center;
    margin-bottom: 3rem;
}

.council-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.council-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    border-radius: 2px;
}

.council-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.council-member-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid transparent;
}

.council-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 73, 94, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.council-member-card:hover::before {
    opacity: 1;
}

.council-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Role-specific styling */
.council-member-card.president {
    border-left-color: #e74c3c;
}

.council-member-card.president:hover {
    border-left-color: #c0392b;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.council-member-card.vice-president {
    border-left-color: #3498db;
}

.council-member-card.vice-president:hover {
    border-left-color: #2980b9;
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
}

.council-member-card.secretary {
    border-left-color: #27ae60;
}

.council-member-card.secretary:hover {
    border-left-color: #229954;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.2);
}

.council-member-card.joint-secretary {
    border-left-color: #f39c12;
}

.council-member-card.joint-secretary:hover {
    border-left-color: #e67e22;
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
}

.council-member-card.treasurer {
    border-left-color: #9b59b6;
}

.council-member-card.treasurer:hover {
    border-left-color: #8e44ad;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

.member-number {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.member-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.member-designation {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
}

.member-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.member-icon i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Role-specific icon styling */
.president .member-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.president .member-icon i {
    color: white;
}

.vice-president .member-icon {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.vice-president .member-icon i {
    color: white;
}

.secretary .member-icon {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.secretary .member-icon i {
    color: white;
}

.joint-secretary .member-icon {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.joint-secretary .member-icon i {
    color: white;
}

.treasurer .member-icon {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.treasurer .member-icon i {
    color: white;
}

.council-member-card:hover .member-icon {
    transform: scale(1.1);
}

.council-member-card:hover .member-number {
    transform: scale(1.1);
}

/* Responsive Design for Resource Persons */
@media (max-width: 768px) {
    .resource-header h3 {
        font-size: 2rem;
    }
    
    .resource-person-simple {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .resource-person-simple h4 {
        font-size: 1.5rem;
    }
    
    .resource-designation {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .resource-header h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .resource-person-simple {
        padding: 1.5rem;
    }
    
    .resource-person-simple h4 {
        font-size: 1.3rem;
    }
    
    .resource-designation {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Governing Council Committee */
@media (max-width: 1024px) {
    .council-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .council-member-card {
        padding: 1.5rem;
    }
    
    .member-info h4 {
        font-size: 1.2rem;
    }
    
    .member-designation {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .governing-council-section {
        margin: 3rem 0;
    }
    
    .council-header h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .council-members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .council-member-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .member-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .member-info h4 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .member-designation {
        font-size: 1rem;
    }
    
    .member-icon {
        width: 70px;
        height: 70px;
    }
    
    .member-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .council-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .council-header h3::after {
        width: 60px;
        height: 3px;
    }
    
    .council-members-grid {
        padding: 0 0.5rem;
    }
    
    .council-member-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .member-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .member-designation {
        font-size: 0.9rem;
    }
    
    .member-icon {
        width: 60px;
        height: 60px;
    }
    
    .member-icon i {
        font-size: 1.5rem;
    }
}

/* College Development Committee Section */
.development-committee-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.committee-header {
    text-align: center;
    margin-bottom: 3rem;
}

.committee-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.committee-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    border-radius: 2px;
}

.committee-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.committee-member-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 6px solid transparent;
    min-width: 450px;
}

.committee-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05), rgba(155, 89, 182, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.committee-member-card:hover::before {
    opacity: 1;
}

.committee-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Role-specific styling for Development Committee */
.committee-member-card.chairman {
    border-left-color: #8e44ad;
}

.committee-member-card.chairman:hover {
    border-left-color: #7d3c98;
    box-shadow: 0 25px 50px rgba(142, 68, 173, 0.25);
}

.committee-member-card.principal {
    border-left-color: #2980b9;
}

.committee-member-card.principal:hover {
    border-left-color: #21618c;
    box-shadow: 0 25px 50px rgba(41, 128, 185, 0.25);
}

.committee-member-card .member-number {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}

.committee-member-card .member-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.committee-member-card .member-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.committee-member-card .member-designation {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.committee-member-card .member-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.committee-member-card .member-icon i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

/* Role-specific icon styling for Development Committee */
.chairman .member-icon {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
}

.chairman .member-icon i {
    color: white;
}

.principal .member-icon {
    background: linear-gradient(45deg, #2980b9, #3498db);
}

.principal .member-icon i {
    color: white;
}

.committee-member-card:hover .member-icon {
    transform: scale(1.1) rotate(5deg);
}

.committee-member-card:hover .member-number {
    transform: scale(1.1);
}

/* Responsive Design for College Development Committee */
@media (max-width: 1024px) {
    .committee-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 1.5rem;
    }
    
    .committee-member-card {
        padding: 2rem 2.5rem;
        min-width: 400px;
    }
    
    .committee-member-card .member-info h4 {
        font-size: 1.4rem;
    }
    
    .committee-member-card .member-designation {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .development-committee-section {
        margin: 3rem 0;
    }
    
    .committee-header h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .committee-header h3::after {
        width: 80px;
    }
    
    .committee-members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .committee-member-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        min-width: auto;
        width: 100%;
    }
    
    .committee-member-card .member-info h4 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        white-space: normal;
    }
    
    .committee-member-card .member-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .committee-member-card .member-designation {
        font-size: 1.1rem;
    }
    
    .committee-member-card .member-icon {
        width: 80px;
        height: 80px;
    }
    
    .committee-member-card .member-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .committee-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .committee-header h3::after {
        width: 60px;
        height: 3px;
    }
    
    .committee-members-grid {
        padding: 0 0.5rem;
    }
    
    .committee-member-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .committee-member-card .member-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .committee-member-card .member-info h4 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .committee-member-card .member-designation {
        font-size: 1rem;
    }
    
    .committee-member-card .member-icon {
        width: 70px;
        height: 70px;
    }
    
    .committee-member-card .member-icon i {
        font-size: 1.8rem;
    }
}

/* Convener Section */
.convener-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.convener-header {
    text-align: center;
    margin-bottom: 3rem;
}

.convener-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.convener-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    border-radius: 2px;
}

.convener-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #e67e22;
    max-width: 600px;
    margin: 0 auto;
}

.convener-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(243, 156, 18, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.convener-card:hover::before {
    opacity: 1;
}

.convener-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(230, 126, 34, 0.25);
    border-left-color: #d35400;
}

.convener-card .member-number {
    background: linear-gradient(45deg, #e67e22, #f39c12);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.convener-card .member-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.convener-card .member-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.convener-card .member-designation {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.convener-card .member-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.convener-card .member-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.convener-card:hover .member-icon {
    transform: scale(1.1) rotate(5deg);
}

.convener-card:hover .member-number {
    transform: scale(1.1);
}

/* Coordinator Section */
.coordinator-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.coordinator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coordinator-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.coordinator-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.coordinator-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.coordinator-member-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 6px solid transparent;
    min-width: 450px;
}

.coordinator-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05), rgba(46, 204, 113, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coordinator-member-card:hover::before {
    opacity: 1;
}

.coordinator-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Role-specific styling for Coordinator */
.coordinator-member-card.head-coordinator {
    border-left-color: #27ae60;
}

.coordinator-member-card.head-coordinator:hover {
    border-left-color: #229954;
    box-shadow: 0 25px 50px rgba(39, 174, 96, 0.25);
}

.coordinator-member-card.asst-coordinator {
    border-left-color: #2ecc71;
}

.coordinator-member-card.asst-coordinator:hover {
    border-left-color: #27ae60;
    box-shadow: 0 25px 50px rgba(46, 204, 113, 0.25);
}

.coordinator-member-card .member-number {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

.coordinator-member-card .member-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.coordinator-member-card .member-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.coordinator-member-card .member-designation {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.coordinator-member-card .member-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.coordinator-member-card .member-icon i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

/* Role-specific icon styling for Coordinator */
.head-coordinator .member-icon {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.head-coordinator .member-icon i {
    color: white;
}

.asst-coordinator .member-icon {
    background: linear-gradient(45deg, #2ecc71, #58d68d);
}

.asst-coordinator .member-icon i {
    color: white;
}

.coordinator-member-card:hover .member-icon {
    transform: scale(1.1) rotate(5deg);
}

.coordinator-member-card:hover .member-number {
    transform: scale(1.1);
}

/* Responsive Design for Convener Section */
@media (max-width: 768px) {
    .convener-section {
        margin: 3rem 0;
    }
    
    .convener-header h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .convener-header h3::after {
        width: 70px;
    }
    
    .convener-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .convener-card .member-info h4 {
        font-size: 1.4rem;
        white-space: normal;
    }
    
    .convener-card .member-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .convener-card .member-icon {
        width: 80px;
        height: 80px;
    }
    
    .convener-card .member-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .convener-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .convener-header h3::after {
        width: 50px;
        height: 3px;
    }
    
    .convener-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin: 0 0.5rem;
    }
    
    .convener-card .member-info h4 {
        font-size: 1.2rem;
    }
    
    .convener-card .member-designation {
        font-size: 1rem;
    }
}

/* Responsive Design for Coordinator Section */
@media (max-width: 1024px) {
    .coordinator-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 1.5rem;
    }
    
    .coordinator-member-card {
        padding: 2rem 2.5rem;
        min-width: 400px;
    }
    
    .coordinator-member-card .member-info h4 {
        font-size: 1.4rem;
    }
    
    .coordinator-member-card .member-designation {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .coordinator-section {
        margin: 3rem 0;
    }
    
    .coordinator-header h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .coordinator-header h3::after {
        width: 80px;
    }
    
    .coordinator-members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .coordinator-member-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        min-width: auto;
        width: 100%;
    }
    
    .coordinator-member-card .member-info h4 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        white-space: normal;
    }
    
    .coordinator-member-card .member-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .coordinator-member-card .member-designation {
        font-size: 1.1rem;
    }
    
    .coordinator-member-card .member-icon {
        width: 80px;
        height: 80px;
    }
    
    .coordinator-member-card .member-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .coordinator-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .coordinator-header h3::after {
        width: 60px;
        height: 3px;
    }
    
    .coordinator-members-grid {
        padding: 0 0.5rem;
    }
    
    .coordinator-member-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .coordinator-member-card .member-info h4 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .coordinator-member-card .member-designation {
        font-size: 1rem;
    }
    
    .coordinator-member-card .member-icon {
        width: 70px;
        height: 70px;
    }
    
    .coordinator-member-card .member-icon i {
        font-size: 1.8rem;
    }
}

/* Workshop Committees Section */
.workshop-committees-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.committees-header {
    text-align: center;
    margin-bottom: 4rem;
}

.committees-header h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.committees-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.committee-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(41, 128, 185, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.committee-card:hover::before {
    opacity: 1;
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.committee-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.committee-number {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.committee-title h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.committee-members {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.member-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.member-item:hover {
    background: #e9ecef;
    border-left-color: #3498db;
    transform: translateX(5px);
}

.member-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.member-role {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    font-style: italic;
}

/* Committee-specific styling */
.technical-committee {
    border-top-color: #e74c3c;
}

.technical-committee .committee-number {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.technical-committee .member-item:hover {
    border-left-color: #e74c3c;
}

.refreshment-committee {
    border-top-color: #f39c12;
}

.refreshment-committee .committee-number {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.refreshment-committee .member-item:hover {
    border-left-color: #f39c12;
}

.registration-committee {
    border-top-color: #27ae60;
}

.registration-committee .committee-number {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.registration-committee .member-item:hover {
    border-left-color: #27ae60;
}

.feedback-committee {
    border-top-color: #9b59b6;
}

.feedback-committee .committee-number {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.feedback-committee .member-item:hover {
    border-left-color: #9b59b6;
}

.report-committee {
    border-top-color: #34495e;
}

.report-committee .committee-number {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.report-committee .member-item:hover {
    border-left-color: #34495e;
}

.accommodation-committee {
    border-top-color: #e67e22;
}

.accommodation-committee .committee-number {
    background: linear-gradient(45deg, #e67e22, #d35400);
}

.accommodation-committee .member-item:hover {
    border-left-color: #e67e22;
}

/* Responsive Design for Workshop Committees */
@media (max-width: 1200px) {
    .committees-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .workshop-committees-section {
        margin: 4rem 0;
    }
    
    .committees-header h3 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .committees-header h3::after {
        width: 100px;
    }
    
    .committees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .committee-card {
        padding: 1.5rem;
    }
    
    .committee-title {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .committee-title h4 {
        font-size: 1.2rem;
    }
    
    .committee-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .member-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        padding: 1rem;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .committees-header h3 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .committees-header h3::after {
        width: 80px;
        height: 3px;
    }
    
    .committees-grid {
        padding: 0 0.5rem;
    }
    
    .committee-card {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .committee-title h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .committee-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .member-item {
        padding: 0.8rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
}

/* Vote of Thanks Section */
.vote-thanks-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.thanks-header {
    text-align: center;
    margin-bottom: 3rem;
}

.thanks-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.thanks-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #1abc9c, #16a085);
    border-radius: 2px;
}

.thanks-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #1abc9c;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05), rgba(22, 160, 133, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thanks-card:hover::before {
    opacity: 1;
}

.thanks-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 188, 156, 0.25);
    border-left-color: #16a085;
}

.thanks-card .member-number {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.thanks-card .member-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.thanks-card .member-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.thanks-card .member-designation {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.thanks-card .member-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1abc9c, #16a085);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.thanks-card .member-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.thanks-card:hover .member-icon {
    transform: scale(1.1) rotate(5deg);
}

.thanks-card:hover .member-number {
    transform: scale(1.1);
}

/* Responsive Design for Vote of Thanks Section */
@media (max-width: 768px) {
    .vote-thanks-section {
        margin: 3rem 0;
    }
    
    .thanks-header h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .thanks-header h3::after {
        width: 70px;
    }
    
    .thanks-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .thanks-card .member-info h4 {
        font-size: 1.4rem;
        white-space: normal;
    }
    
    .thanks-card .member-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .thanks-card .member-icon {
        width: 80px;
        height: 80px;
    }
    
    .thanks-card .member-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .thanks-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .thanks-header h3::after {
        width: 50px;
        height: 3px;
    }
    
    .thanks-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin: 0 0.5rem;
    }
    
    .thanks-card .member-info h4 {
        font-size: 1.2rem;
    }
    
    .thanks-card .member-designation {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .patron-details-section {
        padding: 4rem 0;
    }
    
    .patron-card-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1rem;
    }
    
    .patron-icon {
        width: 80px;
        height: 80px;
    }
    
    .patron-icon i {
        font-size: 2.5rem;
    }
    
    .patron-title h3 {
        font-size: 1.8rem;
    }
    
    .patron-subtitle {
        font-size: 1rem;
    }
    
    .patron-card-content {
        padding: 2rem;
    }
    
    .patron-achievements {
        grid-template-columns: 1fr;
    }
    
    .expansion-timeline {
        grid-template-columns: 1fr;
    }
    
    .department-features {
        grid-template-columns: 1fr;
    }
    
    .legacy-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
    }
    
    .recognition-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .college-achievements {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .success-areas {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .patron-cta {
        padding: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .patron-card-header {
        padding: 1.5rem;
    }
    
    .patron-card-content {
        padding: 1.5rem;
    }
    
    .patron-text p {
        font-size: 1rem;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
    }
    
    .success-areas {
        grid-template-columns: 1fr;
    }
    
    .patron-cta {
        padding: 1.5rem;
    }
}
@media (max-width: 768px) {
    .instructor-details-section {
        padding: 4rem 0;
    }
    
    .instructor-cta {
        padding: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .instructor-cta {
        padding: 1.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .features-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-preview-card {
        padding: 1.5rem;
    }
    
    .feature-preview-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-preview-icon i {
        font-size: 1.5rem;
    }
    
    .features-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .key-features-preview-section {
        padding: 4rem 0;
    }
    
    .feature-preview-card {
        padding: 1rem;
    }
    
    .feature-preview-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-preview-content p {
        font-size: 0.9rem;
    }
}
.key-features-section {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card-premium {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.feature-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-header::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="feature-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23feature-pattern)"/></svg>');
    opacity: 0.3;
}

.feature-icon-large {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    z-index: 3;
}

.feature-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.05);
}

/* Features Summary */
.features-summary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.features-summary::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="summary-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23summary-pattern)"/></svg>');
    opacity: 0.3;
}

.summary-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.summary-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.summary-icon i {
    font-size: 2.5rem;
    color: #feca57;
}

.summary-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.summary-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.summary-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #feca57;
    margin-bottom: 0.3rem;
}

.summary-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Responsive Design for Key Features */
@media (max-width: 768px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-premium {
        margin: 0 1rem;
    }
    
    .feature-header {
        padding: 1.5rem;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-large i {
        font-size: 2rem;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .summary-stats .stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .summary-stats .stat-number {
        font-size: 1.4rem;
    }
    
    .summary-stats .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .features-summary {
        padding: 2rem 1.5rem;
    }
    
    .summary-text h4 {
        font-size: 1.5rem;
    }
    
    .summary-text p {
        font-size: 1rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .certificate-access {
        padding: 2rem;
    }
    
    .certificate-icon {
        width: 100px;
        height: 100px;
    }
    
    .certificate-icon i {
        font-size: 3rem;
    }
    
    .certificate-access h3 {
        font-size: 2rem;
    }
    
    .certificate-access p {
        font-size: 1rem;
    }
    
    .certificate-info {
        padding: 1.5rem;
    }
    
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificate-preview {
        padding: 2rem;
    }
    
    .certificate-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .certificate-section {
        padding: 4rem 0;
    }
    
    .certificate-access {
        padding: 1.5rem;
    }
    
    .certificate-icon {
        width: 80px;
        height: 80px;
    }
    
    .certificate-icon i {
        font-size: 2.5rem;
    }
    
    .certificate-access h3 {
        font-size: 1.8rem;
    }
    
    .download-btn,
    .download-certificate-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* New Registration Form Styles */
.registration-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.registration-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.registration-form {
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.section-title i {
    color: #667eea;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 1rem;
    pointer-events: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
}

.form-group textarea + .form-icon {
    top: 2.5rem;
    transform: none;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.conditional-section {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-feedback {
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.password-feedback.match {
    color: #27ae60;
}

.password-feedback.no-match {
    color: #e74c3c;
}

.fee-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fee-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.fee-info-note {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    color: #1565c0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fee-info-note i {
    color: #1976d2;
    font-size: 1.1rem;
}

.fee-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled,
.submit-btn.disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.registration-closed {
    text-align: center;
    padding: 4rem 2rem;
    color: #7f8c8d;
}

.registration-closed i {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.registration-closed h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.modal-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.registration-id {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.modal-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for Registration Form */
@media (max-width: 768px) {
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 4rem 0;
    }
    
    .registration-form {
        padding: 1.5rem 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .form-icon {
        left: 0.8rem;
        font-size: 0.9rem;
    }
}

/* ===== SELECTION PROCESS PAGE STYLES ===== */

/* Selection Header */
.selection-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.selection-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.header-decoration {
    margin-top: 2rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

.header-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icons i:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.5;
    }
}

/* Selection Process Section */
.selection-process {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.process-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.process-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.process-step:nth-child(even) .step-number {
    margin-left: 2rem;
    margin-right: 0;
}

.process-step:nth-child(odd) .step-number {
    margin-right: 2rem;
}

.process-step.hovered {
    transform: scale(1.02);
}

/* Step Number */
.step-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.step-number.animate {
    animation: stepPulse 1s ease-out;
}

.step-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes stepPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Step Content */
.step-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-content > p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Step Features */
.step-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.feature-item i {
    color: #27ae60;
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* Action Button */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
    color: white;
}

/* Review Criteria */
.review-criteria {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.review-criteria h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-criteria ul {
    list-style: none;
    padding: 0;
}

.review-criteria li {
    padding: 0.5rem 0;
    color: #7f8c8d;
    position: relative;
    padding-left: 1.5rem;
}

.review-criteria li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Notification Info */
.notification-info {
    margin-top: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-card h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    opacity: 0.9;
}

/* Payment Info */
.payment-info {
    margin-top: 1.5rem;
}

.price-card {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.price-header {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

.price-header h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-includes {
    padding: 1.5rem;
}

.price-includes h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-includes ul {
    list-style: none;
    padding: 0;
}

.price-includes li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* Workshop Highlights */
.workshop-highlights {
    margin-top: 1.5rem;
}

.workshop-highlights h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.workshop-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.workshop-highlights .highlight-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.workshop-highlights .highlight-item i {
    color: #667eea;
    font-size: 1.2rem;
}

/* Final Step */
.final-step .step-content {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.final-step .step-content::before {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.final-step .step-icon {
    background: rgba(255, 255, 255, 0.2);
}

.final-step .step-content h3,
.final-step .workshop-highlights h4 {
    color: white;
}

.final-step .feature-item {
    color: white;
}

.final-step .feature-item i {
    color: #f1c40f;
}

.final-step .workshop-highlights .highlight-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.final-step .workshop-highlights .highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.final-step .workshop-highlights .highlight-item i {
    color: #f1c40f;
}

/* Important Notes Section */
.important-notes {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.notes-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.note-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.note-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.note-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.note-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.note-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Selection CTA Section */
.selection-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 80px;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0 !important;
    }
    
    .step-content {
        margin-left: 0;
        width: 100%;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-icons i {
        font-size: 1.5rem;
    }
    
    .selection-header {
        min-height: 300px;
    }
    
    .header-content .page-title {
        font-size: 2rem;
    }
    
    .process-intro h2 {
        font-size: 2rem;
    }
    
    .notes-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .note-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* Tertiary Button Style for Selection Process */
.btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
    border: none;
    cursor: pointer;
}

.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.4);
    color: white;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.btn-tertiary:active {
    transform: translateY(0);
}

/* Responsive CTA buttons */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-tertiary {
        width: 100%;
        justify-content: center;
    }
}
/* Fix for Home Page Highlight Items - Ensure proper layout */
.highlights-section .highlight-item {
    display: block !important;
    text-align: center !important;
    background: white !important;
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.highlights-section .highlight-item:hover {
    transform: translateY(-10px) !important;
    border-color: #667eea !important;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2) !important;
    background: white !important;
}

.highlights-section .highlight-item h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.highlights-section .highlight-item p {
    color: #7f8c8d !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.highlights-section .highlight-icon {
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3) !important;
}

.highlights-section .highlight-icon i {
    font-size: 2rem !important;
    color: white !important;
}