 /* VLSI Workshop Page Styles */

    /* Section Title Styling */
    .section-title {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        font-weight: 600;
        color: #fb873f !important;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section-title::before {
        position: absolute;
        content: "";
        width: 40px;
        height: 2px;
        top: 50%;
        left: -50px;
        margin-top: -1px;
        background: #fb873f;
    }

    /* Hero Section Enhancements */
    .workshop-hero {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        overflow: hidden;
    }

    /* Service Cards Hover Effects */
    .service-items {
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
    }

    .service-items::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(251, 135, 63, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .service-items:hover::before {
        left: 100%;
    }

    .service-items:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
        border-color: #fb873f;
        color: #012a59;
    }

    .service-items .text-primary {
        transition: all 0.3s ease;
    }

    .service-items:hover .text-primary {
        color: #0c0500 !important;
        transform: scale(1.1);
    }

    /* Agenda Cards */
    .agenda-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border-left: 4px solid #fb873f;
    }

    .agenda-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .agenda-card h5 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .agenda-card h6 {
        color: #012a59;
        font-weight: 600;
        margin-bottom: 20px;
    }

    /* Highlight Features */
    .btn-sm-square {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-highlight {
        transition: all 0.3s ease;
    }

    .feature-highlight:hover .btn-sm-square {
        background-color: #fb873f !important;
        transform: scale(1.1);
    }

    /* Workshop Info Card */
    .workshop-info-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .workshop-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #fb873f 0%, #012a59 100%);
    }

    .border-start.border-5.border-primary {
        border-left: 4px solid #fb873f !important;
        padding-left: 15px !important;
        transition: all 0.3s ease;
    }

    .border-start.border-5.border-primary:hover {
        border-left-width: 6px !important;
        transform: translateX(5px);
    }

    /* Tools Section */
    .tools-item {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .tools-item:hover {
        background: white;
        border-color: #fb873f;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(251, 135, 63, 0.2);
    }

    .tools-item h6 {
        font-weight: 600;
        color: #012a59;
        transition: color 0.3s ease;
    }

    .tools-item:hover h6 {
        color: #fb873f;
    }

    /* Animated Registration Button */
    .register-btn {
        position: relative;
        display: inline-block;
        padding: 15px 40px;
        background: linear-gradient(45deg, #fb873f, #ff6b35, #fb873f);
        background-size: 300% 300%;
        color: white !important;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 25px rgba(251, 135, 63, 0.4);
        overflow: hidden;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        animation: gradientShift 3s ease infinite;
    }

    .register-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .register-btn:hover::before {
        left: 100%;
    }

    .register-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(251, 135, 63, 0.6);
        color: white !important;
    }

    .register-btn:active {
        transform: translateY(-1px) scale(1.02);
    }

    /* Gradient Animation */
    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Pulse Effect for Important Buttons */
    .pulse-btn {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(251, 135, 63, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(251, 135, 63, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(251, 135, 63, 0);
        }
    }

    /* Glow Effect Registration Button */
    .glow-btn {
        position: relative;
        display: inline-block;
        padding: 18px 45px;
        background: linear-gradient(45deg, #012a59, #1e4a72, #012a59);
        background-size: 300% 300%;
        color: white !important;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 2px solid #fb873f;
        overflow: hidden;
        transition: all 0.4s ease;
        animation: glowPulse 2s ease-in-out infinite alternate, gradientFlow 4s ease infinite;
    }

    .glow-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(251, 135, 63, 0.3), transparent 70%);
        transition: all 0.4s ease;
        transform: translate(-50%, -50%);
    }

    .glow-btn:hover::after {
        width: 300px;
        height: 300px;
    }

    .glow-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow:
            0 15px 40px rgba(1, 42, 89, 0.4),
            0 0 30px rgba(251, 135, 63, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: #ff6b35;
        color: white !important;
    }

    @keyframes glowPulse {
        from {
            box-shadow:
                0 8px 25px rgba(1, 42, 89, 0.3),
                0 0 20px rgba(251, 135, 63, 0.4);
        }

        to {
            box-shadow:
                0 12px 35px rgba(1, 42, 89, 0.4),
                0 0 35px rgba(251, 135, 63, 0.7);
        }
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Floating Registration Button */
    .float-register {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        animation: float 3s ease-in-out infinite, bounce 2s infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

    /* Call to Action Section */
    .cta-section {
        background: linear-gradient(45deg, #012a59, #ffcc33);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        opacity: 0.1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {

        .register-btn,
        .glow-btn {
            padding: 12px 25px;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .float-register {
            bottom: 20px;
            right: 20px;
        }

        .service-items:hover {
            transform: none;
        }

        .section-title::before {
            display: none;
        }
    }

    /* Additional Utility Classes */
    .text-gradient {
        background: linear-gradient(45deg, #fb873f, #012a59);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .border-gradient {
        border: 2px solid;
        border-image: linear-gradient(45deg, #fb873f, #012a59) 1;
    }

    .shadow-custom {
        box-shadow: 0 10px 30px rgba(251, 135, 63, 0.2) !important;
    }

    .bg-gradient-custom {
        background: linear-gradient(135deg, #fb873f 0%, #ff6b35 50%, #012a59 100%);
    }