
 .video-hero{
    position:relative;
    height:600px;
    overflow:hidden;
}

.video-hero video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:white;
    text-align:center;
    z-index:2;
} 



/* spoken English section starts*/

/* SECTION */
.spoken-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2c2c6c;
}

/* GRID */
.spoken-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* BOX */
.spoken-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.spoken-box:hover {
    transform: translateY(-5px);
}

/* ABOUT */
.highlight {
    margin-top: 15px;
    background: #ff6a3d;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
}

/* WHY */
.why-item {
    background: #f7f7f7;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    transition: 0.3s;
}

.why-item:hover {
    background: #ff6a3d;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px){
    .spoken-grid {
        grid-template-columns: 1fr;
    }
}

.benefits-section {
    padding: 60px 20px;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.benefit-card {
    background: #f9fbff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
    border:1px solid red;
}

.benefit-card i {
    font-size: 30px;
    color: #ff6a3d;
    margin-bottom: 10px;
}

.benefit-card:hover {
    background: #ff6a3d;
    color: #fff;
}

.course-section {
    padding: 60px 20px;
    background: #f5f9ff;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.course-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.course-card ul {
    list-style: none;
    padding: 0;
}

.course-card:hover {
    transform: translateY(-10px);
}

/* SPECIAL CARD */
.highlight-card {
    border: 2px solid #ff6a3d;
}

/* CTA */
.cta-btn {
 
  font-size: 20px;
    display: inline-block;
    margin-top: 10px;
    background: #ff6a3d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
    .course-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* spoken English section ends*/




/* computer course card */
/* RESET (VERY IMPORTANT) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SECTION */
.hlcc-course-section {
    padding: 60px 20px;
    background: #f8fbff;
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.hlcc-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0a2540;
}

/* GRID FIX (NO OVERLAP ISSUE) */
.hlcc-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.hlcc-card {
    perspective: 1000px;
    width: 100%;
}

/* INNER FLIP */
.hlcc-card-inner {
    position: relative;
    width: 100%;
    height: 360px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.hlcc-card:hover .hlcc-card-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.hlcc-card-front,
.hlcc-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    padding: 25px;
    color: #fff;
}

/* FRONT DESIGN */
.hlcc-card-front {
    background: linear-gradient(135deg, #ff6a3d, #ff8c5a);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* BACK DESIGN */
.hlcc-card-back {
    background: linear-gradient(135deg, #0a2540, #163a5f);
    transform: rotateY(180deg);
}

/* ICON */
.hlcc-card-front i {
    font-size: 40px;
    margin-bottom: 10px;
}

/* TITLE */
.hlcc-card-front h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* SUBTEXT */
.hlcc-card-front p {
    font-size: 14px;
    opacity: 0.9;
}

/* BADGE */
.hlcc-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #ff6a3d;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* BACK CONTENT */
.hlcc-card-back h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* LIST */
.hlcc-card-back ul {
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
}

/* WHATSAPP BUTTON */
.hlcc-whatsapp-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hlcc-whatsapp-btn:hover {
    background: #1ebe5d;
}

/* HOVER EFFECT */
.hlcc-card-front:hover {
    transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hlcc-card-inner {
        height: 330px;
    }

    .hlcc-section-title {
        font-size: 26px;
    }
}
/* computer course card ends*/
