  /* Academic City Hero Video Styles - Completely Standalone */
  .academic-city-hero-video-new {
    background: linear-gradient(135deg, #f5f7fa 0%, #f9f9fc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ac-video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.ac-video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ac-video-text {
    max-width: 800px;
    margin-bottom: 50px;
}

.ac-video-title {
  line-height: 1.2;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    color: var(--secondary-dark);
    margin: 10px 0 20px;
    font-weight: 700;
}

.ac-video-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: #CC3634;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.ac-video-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.ac-video-showcase {
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ac-video-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.ac-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.ac-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ac-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ac-video-wrapper:hover .ac-video-overlay {
    opacity: 1;
}

.ac-play-button {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ac-play-button:hover {
    transform: scale(1.1);
}

.ac-play-button i {
    color: #CC3634;
    font-size: 40px;
}

.ac-video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.ac-video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.ac-close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.ac-video-container-modal {
    width: 100%;
    height: 100%;
}

.ac-video-modal-content iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .ac-video-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .academic-city-hero-video-new {
        padding: 60px 0;
    }

    .ac-video-title {
        font-size: 1.6rem;
    }

    .ac-video-subtitle {
        font-size: 1rem;
    }

    .ac-play-button {
        width: 80px;
        height: 80px;
    }

    .ac-play-button i {
        font-size: 30px;
    }
}