/* ==========================================================
   Global Service Styles – Orange Accent (#ff3500)
   ========================================================== */

/* Sections */
.section-padding {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
}
.hero-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-section p {
    color: #f5f5f5;
}

/* General Typography */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
}
.text-muted {
    color: #777 !important;
}

/* Service Details */
.service-details .service-text p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}
.service-image img {
    border-radius: 8px;
    max-height: 480px;
    object-fit: cover;
}

/* Programme Cards */
.programme-card {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #fff;
}
.programme-card:hover {
    transform: translateY(-5px);
    border-color: #ff3500;
    box-shadow: 0 6px 15px rgba(255, 53, 0, 0.15);
}
.programme-card .card-title {
    color: #ff3500;
    font-weight: 700;
    border-bottom: 2px solid #ff3500;
    padding-bottom: 6px;
    display: inline-block;
}
.programme-card .price-tag {
    font-weight: 600;
    font-size: 18px;
    color: #444;
    margin-top: 8px;
}
.programme-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.programme-card ul li::before {
    content: "\f058";
    font-family: "FontAwesome";
    color: #ff3500;
    position: absolute;
    left: 0;
}

/* Related Services */
/* ================================
   Related Services Section
================================ */
.related-services {
    padding: 60px 0;
    background-color: #fff;
}

.related-services .card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.related-services .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(255, 53, 0, 0.15);
}

.related-services .related-thumb {
    background-size: cover;
    background-position: center;
    height: 220px;
    width: 100%;
}

.related-services .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff3500;
    margin-bottom: 8px;
}

.related-services .boxed-btn3 {
    background-color: #ff3500;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-services .boxed-btn3:hover {
    background-color: #d82f00;
    color: #fff;
}

/* Mobile centering fix */
@media (max-width: 576px) {
    .related-services .col-sm-10 {
        margin-left: auto;
        margin-right: auto;
    }
}


/* Buttons */
.boxed-btn3, .boxed-btn4 {
    background-color: #ff3500;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.boxed-btn3:hover, .boxed-btn4:hover {
    background-color: #e12f00;
    box-shadow: 0 6px 15px rgba(255, 53, 0, 0.2);
    color: #fff;
}

/* ===== Course Overview Card ===== */
.overview-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.overview-card ul li {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #444;
    display: flex;
    align-items: center;
}

.overview-card ul li:last-child {
    border-bottom: none;
}

.price-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #e12f00; /* same blue tone as buttons */
    background:  rgba(255, 53, 0, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

/* ===== Icons ===== */
.overview-card i {
    font-size: 18px;
    color: #e12f00;
    width: 24px;
    text-align: center;
}
