﻿/* ==========================
   GLOBAL
========================== */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f8fb;
}

.section-row {
    background: linear-gradient( rgba(0,0,0,0.15), rgba(0,0,0,0.20) ), url('../images/IGUMeerpur.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 30px 0;
}

* {
    box-sizing: border-box;
}

/* ==========================
   MAIN LAYOUT
========================== */

.workshop-container {
    max-width: 1700px;
    margin: auto;
    display: flex;
    gap: 25px;
    align-items: stretch;
}

.left-panel {
    width: 370px;
}

.right-panel {
    /*width:300px;*/
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form-panel {
    flex: 1;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 35px rgba(0,0,0,.15), 0 0 0 1px rgba(255,255,255,.3);
}

/* ==========================
   APP CARD
========================== */

/* ===================================
   APP CARD - IGU OFFICIAL APP
=================================== */

.app-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 15px 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

/* Historic Text */

.historic-text {
    color: #0a8b55;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Very First Official App */

.title-main {
    color: #25317f;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 5px;
}

/* for */

.for-text {
    color: #25317f;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.by-text {
    color: #006b43;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
/* IGU MEERPUR */

.university-name {
    color: #006b43;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

/* Green Ribbon */

.developer-ribbon {
    display: inline-block;
    background: linear-gradient(90deg,#00a86b,#006b43);
    color: white;
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
    margin: 8px;
    border: 3px solid yellow;
}

    .developer-ribbon:before {
        content: "";
        position: absolute;
        left: -20px;
        top: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right: 20px solid #00a86b;
    }

    .developer-ribbon:after {
        content: "";
        position: absolute;
        right: -20px;
        top: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 20px solid #006b43;
    }

/* Mobile Area */

.mobile-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0 25px;
}

/* Laurels */

.laurel {
    font-size: 85px;
    color: #d4a017;
    line-height: 1;
}

/* Mobile */

.phone-frame {
    width: 120px;
    height: 190px;
    border: 7px solid #333;
    border-radius: 22px;
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

    .phone-frame:before {
        content: "";
        width: 45px;
        height: 6px;
        background: #333;
        border-radius: 10px;
        position: absolute;
        top: 8px;
    }

    .phone-frame i {
        font-size: 38px;
        color: #25317f;
        margin-bottom: 10px;
    }

.logo-inside {
    /*  width: 55px;
    height: 55px;*/
    object-fit: contain;
}

/* Bottom Ribbon */

.bottom-ribbon {
    display: inline-block;
    background: linear-gradient(90deg,#f5cb46,#d89d12);
    color: #333;
    padding: 10px 25px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 0 0 15px 15px;
}

/* Tablet */

@media (max-width:1200px) {

    .title-main {
        font-size: 34px;
    }

    .university-name {
        font-size: 44px;
    }

    .laurel {
        font-size: 70px;
    }
}

/* Mobile */

@media (max-width:576px) {

    .title-main {
        font-size: 28px;
    }

    .for-text {
        font-size: 20px;
    }

    .university-name {
        font-size: 34px;
    }

    .developer-ribbon {
        font-size: 13px;
        padding: 8px 15px;
    }

    .phone-frame {
        width: 90px;
        height: 145px;
    }

    .laurel {
        font-size: 50px;
    }

    .bottom-ribbon {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* ==========================
   PERSON CARD
========================== */

.person-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: .3s;
}

    .person-card:hover {
        transform: translateY(-5px);
    }

    .person-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

.person-info {
    padding: 15px;
    text-align: center;
}

    .person-info h4 {
        margin: 0;
        color: #006b43;
        font-size: 18px;
    }

    .person-info span {
        font-size: 14px;
        color: #555;
    }

/* ==========================
   CYBER CARD
========================== */

.cyber-card {
    background: linear-gradient(135deg,#002f63,#004e9a);
    color: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

    .cyber-card h3 {
        color: #ffd700;
        margin-top: 0;
        text-align: center;
    }

    .cyber-card ul {
        padding-left: 18px;
    }

    .cyber-card li {
        margin-bottom: 12px;
        line-height: 1.5;
    }

/* ==========================
   LOGO SECTION
========================== */

.logo-wrapper {
    text-align: center;
}

.haryana-logo {
    width: 70px;
    /*            margin-bottom: 10px;
*/
}

.igu-logo {
    width: 35px;
    /*            margin-bottom: 10px;
*/
}

.uni-title {
    text-align: center;
    color: #006b43;
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0;
}

.uni-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

/* ==========================
   WORKSHOP TITLE
========================== */

.workshop-heading {
    background: linear-gradient(90deg,#5D05A8,#0035B9);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.workshop-subheading {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* ==========================
   REGISTRATION CARD
========================== */

.registration-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
}

.form-heading {
    text-align: center;
    color: #006b43;
    margin-bottom: 25px;
}

.form-item {
    margin-bottom: 18px;
}

    .form-item label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
    }

.required {
    color: red;
}

.form-control,
.form-text {
    width: 100%;
    height: 50px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 10px 15px;
    transition: .3s;
}

    .form-control:focus,
    .form-text:focus {
        border-color: #00a86b;
        outline: none;
        box-shadow: 0 0 10px rgba(0,168,107,.25);
    }

/* ==========================
   BUTTON
========================== */

.register-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg,#006b43,#00a86b);
    color: white;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s;
}

    .register-btn:hover {
        background: linear-gradient(90deg,#005635,#008a59);
    }

/* ==========================
   SECURITY NOTE
========================== */

.security-note {
    text-align: center;
    margin-top: 20px;
    color: #006b43;
    font-weight: 600;
}

/* ==========================
   AWARENESS CARD
========================== */

.awareness-card {
    background: linear-gradient(135deg,#fffbec,#fff3b0);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

    .awareness-card h3 {
        color: #003366;
    }

    .awareness-card p {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.8;
    }

/* ==========================
   TABLET
========================== */

@media (max-width: 1200px) {

    .left-panel,
    .right-panel {
        width: 220px;
    }

    .uni-title {
        font-size: 34px;
    }
}

/* ==========================
   MOBILE + TABLET
========================== */

@media (max-width: 991px) {

    .workshop-container {
        flex-direction: column;
    }

    .left-panel,
    .right-panel,
    .form-panel {
        width: 100%;
    }

    .person-card img {
        height: auto;
    }

    .uni-title {
        font-size: 28px;
    }

    .workshop-heading {
        font-size: 18px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {

    .form-panel {
        padding: 20px;
    }

    .registration-card {
        padding: 15px;
    }

    .app-card h1 {
        font-size: 34px;
    }

    .app-card h2 {
        font-size: 22px;
    }

    .uni-title {
        font-size: 22px;
    }

    .uni-subtitle {
        font-size: 14px;
    }

    .workshop-heading {
        font-size: 16px;
        padding: 12px;
    }

    .register-btn {
        font-size: 16px;
    }
}

.cyber-security-card {
    background: linear-gradient( 135deg, #07163f 0%, #08265d 35%, #0b2f72 70%, #0d3f91 100% );
    border-radius: 25px;
    padding: 20px;
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

    /* glowing pattern */
    .cyber-security-card:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 220px;
        height: 220px;
        /*background: url('images/Shield.png') no-repeat center center;*/
        background-size: contain;
        opacity: .15;
        z-index: 0;
        pointer-events: none;
    }

    .cyber-security-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 20%, rgba(120,180,255,.4) 2px, transparent 3px), linear-gradient(90deg, transparent 48%, rgba(100,180,255,.15) 50%, transparent 52%), linear-gradient(0deg, transparent 48%, rgba(100,180,255,.15) 50%, transparent 52%);
        background-size: 80px 80px, 40px 40px, 40px 40px;
        opacity: .4;
        z-index: 0;
    }

.cyber-header,
.cyber-subtitle,
.cyber-features {
    position: relative;
    z-index: 2;
}

.cyber-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cyber-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

    .cyber-title span {
        display: block;
        color: #ffd100;
        font-size: 30px;
        font-weight: 900;
        text-shadow: 0 0 10px rgba(255,209,0,.5);
    }

.shield-box {
    position: relative;
    font-size: 45px;
    color: #53b5ff;
}

.lock-icon {
    position: absolute;
    top: 24px;
    left: 16px;
    font-size: 15px;
    color: white;
}

.cyber-subtitle {
    /* margin-top: 10px;*/
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.cyber-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: center;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    flex-shrink: 0;
}

.success {
    background: #00c16e;
}

.warning {
    background: #f4a300;
}

.secure {
    background: #00a2ff;
}

.feature-item h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.feature-item p {
    margin: 2px 0 0;
    font-size: 16px;
    opacity: .9;
}

/* mobile */

@media(max-width:768px) {

    .cyber-title span {
        font-size: 30px;
    }

    .shield-box {
        font-size: 60px;
    }

    .lock-icon {
        left: 25px;
        top: 20px;
        font-size: 20px;
    }

    .feature-item h4 {
        font-size: 18px;
    }
}

.leaders-panel {
    padding: 20px;
    border-radius: 25px;
    background: linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)), url('../../images/IGUMeerpur.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

    /* dotted design */

    .leaders-panel:before {
        content: "";
        position: absolute;
        top: 20px;
        right: 15px;
        width: 120px;
        height: 120px;
        /*                background-image: radial-gradient(#b5d6e8 2px, transparent 2px);
*/ background-size: 12px 12px;
        opacity: .7;
    }

/* =========================================
   LEADER ITEM
========================================= */

.leader-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.leader-photo {
    width: 135px;
    height: 125px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

    .leader-photo img {
        /* width: 100%;
                height: 100%;
                object-fit: cover;*/
    }

.green-bg {
    background: #d9f0d8;
}

.orange-bg {
    background: #ffe2c1;
}

.purple-bg {
    background: #ead6f4;
}

/* =========================================
   CONTENT
========================================= */

.leader-content {
    flex: 1;
}

    .leader-content h3 {
        margin: 0;
        color: #006b43;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
    }

    .leader-content p {
        margin: 10px 0 2px;
        color: #333;
        font-size: 15px;
    }

    .leader-content span {
        color: #555;
        font-size: 15px;
    }

/* divider */

.divider {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

    .divider span {
        width: 280px;
        height: 2px;
        background: #d7b24f;
        position: relative;
    }

        .divider span:before {
            content: "◈";
            position: absolute;
            left: 50%;
            top: -13px;
            transform: translateX(-50%);
            color: #d7b24f;
            font-size: 18px;
        }

/* =========================================
   QUOTE CARD
========================================= */

.quote-card {
    background: #fff;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    margin-top: 0;
}

.quote-icon {
    color: #006b43;
    font-size: 38px;
    font-weight: bold;
}

    .quote-icon.right {
        text-align: right;
        display: block;
    }

.quote-card p {
    margin: 0px 60px;
    color: #333;
    font-size: 18px;
    line-height: 1.7;
}

.quote-card h4 {
    padding: 0px 60px;
    color: #0b5d85;
    font-size: 20px;
    font-weight: 800;
}

/* =========================================
   HEIGHT SAME AS FORM
========================================= */

.workshop-container {
    align-items: stretch;
}

.form-panel,
.leaders-panel {
    /* height: 100%;*/
}

/* =========================================
   LAPTOP
========================================= */

@media(max-width:1400px) {

    .right-panel {
        width: 320px;
    }

    .leader-photo {
        width: 110px;
        height: 100px;
    }

    .leader-content h3 {
        font-size: 22px;
    }

    .leader-content p,
    .leader-content span {
        font-size: 16px;
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px) {

    .right-panel {
        width: 100%;
    }

    .leaders-panel {
        min-height: auto;
    }

    .leader-photo {
        width: 100px;
        height: 90px;
    }

    .leader-content h3 {
        font-size: 20px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px) {

    .leader-item {
        flex-direction: column;
        text-align: center;
    }

    .leader-photo {
        width: 140px;
        height: 130px;
    }

    .divider {
        justify-content: center;
    }

    .leader-content h3 {
        font-size: 20px;
    }

    .leader-content p,
    .leader-content span {
        font-size: 15px;
    }

    .quote-card p {
        font-size: 15px;
    }

    .quote-card h4 {
        font-size: 16px;
    }
}
/* ==========================
   BENEFITS STRIP
========================== */

.benefits-strip {
    max-width: 1080px;
    margin: 20px auto 0;
    background: rgba(255,255,255,.95);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.benefit-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    position: relative;
}

    .benefit-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        width: 1px;
        height: 80%;
        background: #d9cdb7;
    }

.benefit-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.green {
    background: linear-gradient(135deg,#00c56e,#008f4f);
}

.blue {
    background: linear-gradient(135deg,#1e4fa3,#0f2f7a);
}

.purple {
    background: linear-gradient(135deg,#9b5de5,#6f2dbd);
}

.orange {
    background: linear-gradient(135deg,#ff8c32,#f15a00);
}

.benefit-content h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.benefit-content p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

/* Tablet */

@media(max-width:1200px) {

    .benefit-content h4 {
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Mobile */

@media(max-width:768px) {

    .benefits-strip {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-item {
        width: 100%;
        padding-bottom: 15px;
    }

        .benefit-item:not(:last-child)::after {
            width: 100%;
            height: 1px;
            left: 0;
            top: auto;
            bottom: 0;
        }
}
/* =====================================
   NEW REGISTRATION FORM DESIGN
=====================================*/

.registration-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.form-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.form-label {
    width: 220px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.form-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eef7f0;
    color: #006b43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.form-input {
    flex: 1;
}

.form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    background: #fff;
}

    .form-control:focus {
        border-color: #008a59;
        box-shadow: 0 0 8px rgba(0,138,89,.15);
    }

.register-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg,#006b43,#008a59);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

.security-note {
    margin-top: 15px;
    background: #eef6f0;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    color: #006b43;
    font-weight: 600;
}

@media(max-width:768px) {

    .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .form-label {
        width: 100%;
        font-size: 16px;
    }
}




/**********************************SCHEDULE.ASPX*********************************/

/* =========================
   SCHEDULE PAGE CSS
   ========================= */

.schedule-main {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.schedule-top {
    background: linear-gradient(135deg,#5808A9,#003DA5);
    color: #fff;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.schedule-shield,
.schedule-laptop {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    color: #5808A9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.schedule-title-area {
    flex: 1;
    text-align: center;
}

    .schedule-title-area h1 {
        margin: 0;
        color: #fff;
        font-size: 34px;
        line-height: 1.3;
        font-weight: 800;
        text-transform: uppercase;
    }

    .schedule-title-area p {
        margin-top: 10px;
        color: #dfe9ff;
        font-size: 20px;
        font-weight: 600;
    }

.event-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.event-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    border-top: 5px solid #5808A9;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
    transition: .35s;
}

    .event-card:hover {
        transform: translateY(-6px);
    }

    .event-card span {
        display: block;
        color: #5808A9;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .event-card h4 {
        margin: 12px 0;
        color: #003DA5;
        font-size: 24px;
        font-weight: 800;
    }

    .event-card p {
        margin: 0;
        color: #555;
        font-size: 16px;
    }

.schedule-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
}

.cyber-schedule {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
    background: #fff;
}

    .cyber-schedule thead th {
        background: linear-gradient(90deg,#5808A9,#003DA5);
        color: #fff;
        padding: 18px;
        font-size: 18px;
    }

    .cyber-schedule tbody td {
        padding: 18px;
        border-bottom: 1px solid #ececec;
        font-size: 16px;
    }

    .cyber-schedule tbody tr:nth-child(even) {
        background: #f8f9ff;
    }

    .cyber-schedule tbody tr:hover {
        background: #eef3ff;
    }

.join-box {
    margin: 50px auto;
    padding: 40px 30px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(135deg,#5808A9,#003DA5);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(88,8,169,.45);
    animation: pulseGlow 2.5s infinite;
}

    /* Decorative circles */

    .join-box::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -90px;
        left: -90px;
    }

    .join-box::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        bottom: -80px;
        right: -80px;
    }

    .join-box h3 {
        position: relative;
        z-index: 2;
        margin: 0;
        font-size: 25px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
    }

    .join-box p {
        position: relative;
        z-index: 2;
        margin: 18px 0 30px;
        font-size: 19px;
        color: #f2f2f2;
    }

.join-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #FFD700;
    color: #222;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    border-radius: 60px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

    .join-btn:hover {
        background: #fff;
        color: #5808A9;
        transform: translateY(-6px) scale(1.05);
    }

@keyframes pulseGlow {

    0% {
        box-shadow: 0 0 0 rgba(88,8,169,.45);
    }

    50% {
        box-shadow: 0 0 40px rgba(88,8,169,.75);
    }

    100% {
        box-shadow: 0 0 0 rgba(88,8,169,.45);
    }
}

@media(max-width:576px) {

    .join-box {
        padding: 30px 18px;
    }

        .join-box h3 {
            font-size: 24px;
        }

        .join-box p {
            font-size: 16px;
        }

    .join-btn {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        padding: 16px;
    }
}

.brochure-section {
    margin-top: 40px;
}

    .brochure-section h2 {
        text-align: center;
        color: #5808A9;
        margin-bottom: 25px;
    }

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.brochure-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    transition: .35s;
}

    .brochure-card:hover {
        transform: scale(1.03);
    }

    .brochure-card img {
        width: 100%;
        display: block;
    }

/* Tablet */
@media(max-width:991px) {

    .schedule-top {
        flex-direction: column;
        text-align: center;
    }

    .schedule-title-area h1 {
        font-size: 28px;
    }

    .event-cards {
        grid-template-columns: 1fr;
    }

    .brochure-grid {
        grid-template-columns: 1fr;
    }

    .schedule-shield,
    .schedule-laptop {
        width: 95px;
        height: 95px;
        font-size: 42px;
    }
}

/* Mobile */
@media(max-width:576px) {

    .schedule-main {
        border-radius: 18px;
    }

    .schedule-top {
        padding: 20px;
    }

    .schedule-title-area h1 {
        font-size: 22px;
    }

    .schedule-title-area p {
        font-size: 15px;
    }

    .event-card {
        padding: 18px;
    }

        .event-card h4 {
            font-size: 20px;
        }

    .cyber-schedule {
        min-width: 650px;
    }

    .join-btn {
        display: block;
        width: 100%;
    }
}
