:root {
    --tp-navy: #071522;
    --tp-navy-deep: #050d16;
    --tp-green: #1a4b82;
    --tp-green-glow: rgba(21, 153, 71, 0.4);
    --tp-blue: #1a4b82;
    --tp-gold: #f3b545;
    --tp-white: #ffffff;
    --tp-gray-soft: #f8fafc;
    --tp-gray-mid: #94a3b8;
    --tp-text: #1e293b;
    --tp-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --tp-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --tp-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --tp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .training-page {
    font-family: 'Poppins-Regular', sans-serif;
    color: var(--tp-text);
    overflow-x: hidden;
    scroll-behavior: smooth;
} */

/* .training-page h1,
.training-page h2,
.training-page h3 {
    font-family: 'Poppins-Bold', sans-serif;
} */

/* Utility Classes */
.tp-section-padding {
    padding: 60px 0;
}

.tp-mb-title {
    margin-bottom: 30px;
}

.tp-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tp-gradient-text {
    background: linear-gradient(120deg, #5ef2ff 0%, #3da9ff 50%, #a78bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.tp-btn {
	padding: 10px 15px;
	border-radius: 10px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: var(--tp-transition);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
}

.tp-btn-primary {
    background: linear-gradient(135deg, #184272, #1e60aa);
    color: #fff;
    box-shadow: 0 10px 20px rgba(29, 90, 159, 0.54);
}

.tp-btn-primary:hover {
    background: linear-gradient(135deg, #184272, #1e60aa);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(29, 90, 159, 0.54);
    color: #fff;
}

.tp-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.tp-btn-outline:hover {
    background: #fff;
    color: var(--tp-navy);
    transform: translateY(-3px);
}

/* 1. Intro (Hero) */
.tp-hero {
    position: relative;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(7, 21, 34, 0.8), rgba(7, 21, 34, 0.6)), url("../images/bg.webp");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}

.tp-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

/* .tp-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 25px; } */
.tp-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
}

.tp-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

.tp-badge {
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tp-badge i {
    color: var(--tp-gold);
}

/* 2. Why Drone Training */
/* .tp-why { */
    /* background: var(--tp-gray-soft); */
    /* background: linear-gradient(135deg, rgba(21, 153, 71, .08) 0%, rgba(36, 183, 219, .08) 45%, rgba(255, 255, 255, 0) 100%), #f8fbf9; */
/* } */

.tp-feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--tp-shadow-md);
    height: 100%;
    transition: var(--tp-transition);
    border: 1px solid transparent;
}

.tp-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--tp-green);
    box-shadow: var(--tp-shadow-lg);
}

.tp-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(21, 153, 71, 0.1);
    color: var(--tp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.tp-why-highlight {
    margin-top: 50px;
    padding: 30px;
    border-radius: 20px;
    background: var(--tp-navy);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tp-why-highlight i {
    font-size: 40px;
    color: var(--tp-gold);
}

/* 3. Course Details */
.tp-details {
    position: relative;
}

.tp-details-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--tp-shadow-lg);
}

.tp-details-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.tp-details-img:hover img {
    transform: scale(1.05);
}

.tp-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.tp-detail-item {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.tp-detail-label {
    font-size: 13px;
    color: var(--tp-gray-mid);
    text-transform: uppercase;
    font-weight: 700;
}

.tp-detail-value {
    font-size: 18px;
    color: var(--tp-navy);
    font-weight: 700;
    margin-top: 5px;
}

/* 4. Detailed Curriculum */
.tp-curriculum {
    background: var(--tp-navy);
    color: #fff;
}

.tp-curriculum h2 {
    color: #fff;
}

.tp-module {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--tp-transition);
}

.tp-module:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
    border-color: var(--tp-green);
}

.tp-module-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--tp-gold);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-curriculum-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.tp-curriculum-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
}

.tp-curriculum-list li i {
   color: #fff;
    margin-top: 4px;
}

/* 5. Hands-On Experience */
.tp-hands-on {
    overflow: hidden;
}

.tp-hands-on-visual {
    position: relative;
}

.tp-hands-on-visual img {
    border-radius: 30px;
    box-shadow: var(--tp-shadow-lg);
}

.tp-floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--tp-shadow-lg);
    max-width: 250px;
}

.tp-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: var(--tp-shadow-sm);
    margin: 5px;
    font-weight: 700;
    font-size: 14px;
}

.tp-feature-pill i {
    color: var(--tp-green);
}

/* 6. Career Pathways */
.tp-career {
    background: var(--tp-gray-soft);
}

.tp-career-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--tp-transition);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tp-career-card:hover {
    border-color: #1a4b82;
    transform: translateY(-10px);
    box-shadow: var(--tp-shadow-lg);
}

.tp-career-icon {
    font-size: 32px;
    color: #1a4b82;
    margin-bottom: 15px;
}

/* 7. Earning Potential */
.tp-earning {
    background: #fff;
}

.tp-stat-box {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--tp-navy), #1a365d);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tp-stat-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(36, 183, 219, 0.1);
    border-radius: 50%;
}

.tp-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-stat-value {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

/* 8. Support System */
.tp-support {
    background: var(--tp-gray-soft);
}

.tp-support-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--tp-shadow-sm);
    transition: var(--tp-transition);
    margin-bottom: 20px;
}

.tp-support-item:hover {
    transform: translateX(10px);
    box-shadow: var(--tp-shadow-md);
    border-left: 5px solid var(--tp-green);
}

.tp-support-icon {
    font-size: 24px;
    color: var(--tp-green);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(21, 153, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 9. CTA */
.tp-cta {
    background: #fff;
    padding-bottom: 120px;
}

.tp-cta-banner {
    background: linear-gradient(135deg, var(--tp-green), var(--tp-blue)),
    url("{{ url('assets/Front/images/new_home/cta_tech_bg.png') }}");
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 80px 60px;
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 60px rgba(21, 153, 71, 0.3);
}

.tp-cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.tp-cta-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.tp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .tp-hero-content {
        text-align: center;
    }

    .tp-hero-content p {
        margin: 0 auto 40px;
    }

    .tp-hero-actions {
        justify-content: center;
    }

    .tp-badge-list {
        justify-content: center;
    }

    .tp-floating-card {
        position: static;
        margin-top: 20px;
        right: 0;
        max-width: 100%;
    }

    .tp-details-grid {
        grid-template-columns: 1fr;
    }

    .tp-cta-banner {
        padding: 60px 30px;
    }

    .tp-cta-banner h2 {
        font-size: 2.2rem;
    }
}
@media (max-width: 575px) {
    .tp-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .tp-hero-actions .tp-btn {
        padding: 7px 10px;
        text-align: center;
        justify-content: center;
    }
}