/* ========================================
   HOMEPAGE SPECIFIC STYLES
   ======================================== */

/* VIDEO WRAPPER */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

/* ACHIEVEMENTS SECTION */
.achievements {
    background: linear-gradient(135deg, #ebf0f5 0%, #f8f9fa 100%);
    padding: 60px 20px;
    text-align: center;
}

.achievements h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002060;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.achievements h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff9933, #138808);
    border-radius: 2px;
}

.achievement-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.achievement-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #007bff;
    transition: transform 0.3s;
}

.achievement-card:hover i {
    transform: scale(1.2);
}

.achievement-card h4 {
    font-weight: 700;
    font-size: 28px;
    margin: 15px 0 8px;
    color: #002060;
}

.achievement-card p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* BRANCH SECTION */
.branch-section {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

.branch-section h2 {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.branch-section h3 {
    font-size: 38px;
    font-weight: 700;
    color: #002060;
    margin: 15px 0 25px;
}

.branch-section p {
    color: #666;
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.7;
}

/* BRANCH CARDS */
.branch-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
    transition: all 0.4s ease;
    padding: 30px;
    height: 100%;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff9933, #138808);
    transition: width 0.3s;
}

.branch-card:hover::before {
    width: 10px;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff9933;
}

.branch-card h5 {
    font-weight: 700;
    color: #002060;
    margin-bottom: 8px;
    font-size: 20px;
}

.branch-card small {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
    font-style: italic;
}

.branch-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
}

.arrow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff3b3b, #e00000);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    position: absolute;
    bottom: 25px;
    right: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
}

.arrow-btn:hover {
    background: linear-gradient(135deg, #e00000, #a00000);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.5);
}

/* LOGO GRID SECTION */
.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #002060;
    margin-bottom: 10px;
}

.highlight-line {
    display: inline-block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #ff9933, #138808);
    border-radius: 4px;
    margin-top: 10px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.logo-grid img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    border: 2px solid #e0e0e0;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #00bcd4;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .achievements h2 {
        font-size: 28px;
    }
    
    .achievement-card {
        padding: 25px 20px;
    }
    
    .achievement-card i {
        font-size: 32px;
    }
    
    .achievement-card h4 {
        font-size: 24px;
    }
    
    .branch-section h3 {
        font-size: 28px;
    }
    
    .branch-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}