/* =========================================================
   control-room.css
   Page-specific styles for /control-room
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

.control-room-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .control-room-banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }
}
.control-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.control-room-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
}
@media (max-width: 768px) {
  .control-room-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
  }
}
.specialized-partners-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}
.specialized-partners-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
.specialized-partners-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,114,255,0.25);
  border-color: rgba(0,198,255,0.4);
}

/* ---------------------------------------------------------
   Moved out of control-room.php (was an inline <style> block)
   --------------------------------------------------------- */

    .info-card {
        background: #ffffff;
        padding: 40px;
        border-radius: 16px;
        height: 100%;
        position: relative;
    }

        .info-card .badge {
            display: inline-block;
            background: #fecc00;
            color: #000;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .info-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .info-card p {
            color: #555;
            margin-bottom: 25px;
        }

    .points-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .point-item {
        display: flex;
        gap: 14px;
        align-items: center;
        font-size: 16px;
    }

        .point-item i {
            font-size: 20px;
            color: #1966b1;
        }

    .feedback-card {
        background: #01253f;
        color: #fff;
        padding: 40px;
        border-radius: 16px;
        height: 100%;
    }

        .feedback-card h4 {
            font-weight: 700;
            margin-bottom: 25px;
        }

    .quote-box {
        background: rgba(255,255,255,0.08);
        padding: 20px;
        border-radius: 12px;
    }

        .quote-box.highlight {
            border-left: 1px solid #fecc00;
        }

        .quote-box p {
            font-size: 15px;
            margin-bottom: 10px;
        }

        .quote-box span {
            font-size: 13px;
            opacity: 0.8;
        }


    .strip-icon {
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: #1966b1;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .objective-strip::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #1966b1;
        border-radius: 4px 0 0 4px;
    }

    .workshop-fee {
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 4px;
        width: fit-content;
    }

        .workshop-fee p {
            margin: 0;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
        }

    .icon-circle1 {
        width: 34px;
        height: 34px;
        border: 2px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        background: none;
        padding-top: 3px;
    }

    .glow-circle {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: #000e22;
        border: 6px solid #1966b1;
        box-shadow: 0 0 15px #1966b1, 0 0 20px #1966b1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        padding: 15px;
        text-align: center;
        color: #fff;
        transition: 0.3s;
    }

        .glow-circle:hover {
            transform: scale(1.08);
            box-shadow: 0 0 15px #348ce2, 0 0 25px #4b94db;
        }

    .icon-glow {
        font-size: 45px;
        color: #fff;
        margin-bottom: 12px;
        text-shadow: 0 0 6px #fff;
    }

    .glow-circle p {
        font-size: 17px;
        font-weight: 600;
        margin: 0;
        color: #fff;
    }


    .agenda-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Main Card */
    .agenda-box {
        display: flex;
        align-items: center;
        gap: 25px;
        background: linear-gradient(90deg, #0d2f4d 0%, #123b5d 100%);
        border-radius: 22px;
        padding: 12px 35px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

        /* Left Yellow Border */
        .agenda-box::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: #ffd700;
            border-radius: 20px;
        }

    /* Icon */
    .agenda-icon {
        min-width: 70px;
    }



    /* Content */
    .agenda-content h4 {
        color: #fff;
        font-size: 42px;
        font-weight: 700;
        margin: 0 0 10px;
    }

    .agenda-content p {
        color: #fff;
        font-size: 24px;
        margin: 0;
        font-weight: 500;
    }

    .agenda-content sup {
        font-size: 14px;
    }


    .speaker-img {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/amit.webp") center/cover;
        
        position: relative;
        overflow: hidden;
    }

    .speaker-img1 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/sunil.webp") center/cover;
        
        position: relative;
        overflow: hidden;
    }

    .speaker-img2 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/harsha.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img3 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/shane.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img4 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/abhay.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img5 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/shailendra.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img6 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/vinayak.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img7 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/rajan.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img8 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/puneet.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img9 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/sunita.webp") center/cover;
       
        position: relative;
        overflow: hidden;
    }

    .speaker-img10 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/kenneth.webp") center/cover;
        position: relative;
        overflow: hidden;
    }


    .speaker-img11 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/rajesh.webp") center/cover;
        position: relative;
        overflow: hidden;
    }

    .speaker-img12 {
        min-height: 170px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(11 124 255 / 0%), rgba(40, 216, 255, 0.08)), url("img/confrence-room/hari-mohan.webp") center/cover;
        position: relative;
        overflow: hidden;
    }




    .session-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .time {
        color: #28d8ff;
        font-weight: 900;
        font-size: 14px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .session h3 {
        font-size: 24px;
        margin-bottom: 7px;
        color: #fff;
    }

    .role {
        color: var(--muted);
        font-weight: 700;
        margin-bottom: 14px;
        color: #8ea9c8;
    }

    .topic {
        color: var(--soft);
        line-height: 1.6;
        font-size: 16px;
        margin-bottom: 18px;
    }

    .session-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .mini-btn {
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(127,223,255,0.24);
        color: var(--soft);
        background: rgba(255,255,255,0.04);
        font-weight: 800;
        font-size: 13px;
    }

    .experience {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 34px;
        align-items: center;
    }

    .experience-visual {
        min-height: 420px;
        border-radius: 34px;
        border: 1px solid var(--border);
        background: linear-gradient(to bottom, rgba(2,8,23,0.04), rgba(2,8,23,0.78)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?q=80&w=1400&auto=format&fit=crop') center/cover;
        box-shadow: 0 24px 80px rgba(0,0,0,0.28);
    }

    .experience-content h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .experience-content p {
        color: var(--soft);
        line-height: 1.8;
        font-size: 17px;
        margin-bottom: 22px;
    }

    .feature-list {
        display: grid;
        gap: 12px;
        margin-bottom: 24px;
    }

    .feature {
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.08);
        color: var(--soft);
        font-weight: 700;
    }

    .tab-btn.active {
        background: #1966b1;
        color: #fff;
        border-color: transparent;
    }

    .agenda-day {
        display: none;
    }

        .agenda-day.active {
            display: grid;
            gap: 18px;
        }




    .topic {
        color: var(--soft);
        line-height: 1.6;
        font-size: 16px;
        margin-bottom: 18px;
        color: #ffffffde;
    }
