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

.play-btn01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  z-index: 2;
}
.play-btn01::before,
    .play-btn01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(255 255 255);
  z-index: -1;
  animation: wave 2s infinite;
}
.play-btn01::after {
  animation-delay: 1s;
}
.play-btn01:hover {
  background: #fff;
}
.deel-room-card {
  width: 22%;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.deel-room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.deal-room {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .deel-room-card {
    width: 100%;
    padding: 25px;
    margin-right: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .deal-room {
    display: inline-flex;
    justify-content: normal;
    gap: 10px;
    flex-wrap: wrap;
  }
}
.title-new {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}
.desc-new {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 12px;
}
.deel-room-card:nth-child(1) {
  border-top: 5px solid #22c55e;
}
.deel-room-card:nth-child(2) {
  border-top: 5px solid #3b82f6;
}
.deel-room-card:nth-child(3) {
  border-top: 5px solid #f97316;
}
.deel-room-card:nth-child(4) {
  border-top: 5px solid #eab308;
}
.deel-room-card:nth-child(5) {
  border-top: 5px solid #a855f7;
}

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

    .collage-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease, filter 0.3s ease;
        filter: grayscale(40%) contrast(1.1) brightness(0.9);
    }

    .collage-item:hover {
        z-index: 10;
        transform: scale(1.05);
        border-color: #031a3c;
        box-shadow: 0 0 25px rgb(10 40 79), 0 0 50px rgb(21 63 124);
    }



    .video-box {
        position: relative;
    }

        .video-box img {
            width: 100%;
        }


    .custom-close-btn {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 999;
        transition: 0.3s;
    }


    .partner-section {
        background: linear-gradient(135deg,#031a3c,#00152f);
    }


    .partner-card {
        position: relative;
        text-align: center;
        min-height: 360px;
        padding: 25px 15px;
        background: linear-gradient(90deg, #0d2f4d 0%, #123b5d 100%);
        border-radius: 20px;
        overflow: hidden;
        border: 2px solid rgba(255,215,0,.35);
        transition: all .5s ease;
    }


        /* Top golden shine */
        .partner-card:before {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            background: #0c375b;
            opacity: .12;
            border-radius: 50%;
            top: -80px;
            right: -80px;
        }

        .partner-card:hover::before {
            opacity: 1;
            box-shadow: 0 0 10px #031a3c5e;
        }
        /* Hover effect */
        .partner-card:hover {
            transform: translateY(-15px) scale(1.04);
            box-shadow: 0 20px 50px rgba(255,215,0,.35);
            border-color: #FFD700;
        }



    /* Meeting Circle */
    .circle {
        width: 120px;
        height: 120px;
        margin: auto;
        background: linear-gradient(145deg,#00152f,#0b2c55);
        border-radius: 50%;
        border: 5px solid #FFD700;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 20px rgba(255,215,0,.6);
        transition: .4s;
    }


    .partner-card:hover .circle {
        transform: rotateY(360deg);
    }


    .circle span {
        font-size: 45px;
        font-weight: 800;
        line-height: 35px;
        color: #FFD700;
    }


    .circle small {
        font-size: 13px;
        letter-spacing: 1px;
    }


    /* Ribbon */

    .ribbon {
        margin: 20px auto;
        width: 90%;
        padding: 10px;
        background: linear-gradient(90deg, #224d92, #0d3266);
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        clip-path: polygon(5% 0,95% 0,100% 50%,95% 100%,5% 100%,0 50%);
        box-shadow: 0 5px 15px rgba(0,0,0,.3);
    }


    .silver-ribbon {
        background: linear-gradient(90deg,#777,#cfcfcf);
    }

    .gold-ribbon {
        background: linear-gradient(90deg,#b88600,#FFD700);
    }



    /* Text */

    .partner-card h5 {
        color: #333;
        font-size: 16px;
        line-height: 1.5;
    }



    /* Bottom Icon */

    .bottom-icon {
        width: 60px;
        height: 60px;
        margin: 20px auto 0;
        border-radius: 50%;
        background: linear-gradient(145deg, #103571, #3364b3);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        box-shadow: 0 8px 20px rgb(255 215 0 / 14%);
        transition: .4s;
    }

    .bottom-icon1 {
        width: 60px;
        height: 60px;
        margin: 20px auto 0;
        border-radius: 50%;
        background: linear-gradient(145deg, #c3c3c3, #828282);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        box-shadow: 0 8px 20px rgb(255 215 0 / 14%);
        transition: .4s;
    }


    .bottom-icon2 {
        width: 60px;
        height: 60px;
        margin: 20px auto 0;
        border-radius: 50%;
        background: linear-gradient(145deg,#FFD700,#b88600);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        box-shadow: 0 8px 20px rgb(255 215 0 / 28%);
        transition: .4s;
    }


    .partner-card:hover .bottom-icon {
        transform: scale(1.2);
    }
