
/* ============================================
   ABOUT PAGE - COMPANY OVERVIEW
   ============================================ */
.tp-about-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
}

.tp-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tp-about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ============================================
   IMAGE COLUMN
   ============================================ */
.tp-about-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.tp-about-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 41, 94, 0.1);
}

.tp-about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tp-about-image-box:hover img {
    transform: scale(1.02);
}

.tp-about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(1, 41, 94, 0.12);
    border-left: 4px solid #ECA90D;
}

.tp-about-image-badge i {
    color: #ECA90D;
    font-size: 28px;
}

.tp-about-image-badge strong {
    display: block;
    font-size: 16px;
    color: #01295E;
    font-weight: 700;
}

.tp-about-image-badge span {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* ============================================
   CONTENT COLUMN
   ============================================ */
.tp-about-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.tp-about-content-inner {
    padding-left: 10px;
}

.tp-about-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.1);
    padding: 6px 22px;
    border-radius: 50px;
    border: 1px solid rgba(236, 169, 13, 0.15);
    margin-bottom: 14px;
}

.tp-about-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #ECA90D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-about-title {
    font-size: 36px;
    font-weight: 700;
    color: #01295E;
    line-height: 1.2;
    margin-bottom: 18px;
}

.tp-about-highlight {
    color: #ECA90D;
    position: relative;
}

.tp-about-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ECA90D;
    border-radius: 2px;
    opacity: 0.3;
}

.tp-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.tp-about-text p:last-child {
    margin-bottom: 0;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* ============================================
   KEY POINTS
   ============================================ */
.tp-about-keypoints {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 20px 0 25px;
}

.tp-keypoint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.tp-keypoint:hover {
    border-color: #ECA90D;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.08);
    transform: translateY(-3px);
}

.tp-keypoint-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #ECA90D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.tp-keypoint-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 2px;
}

.tp-keypoint-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   BUTTONS
   ============================================ */
.tp-about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #ECA90D;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.3);
}

.tp-btn-primary:hover {
    background: #d49a0c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 169, 13, 0.4);
    color: #fff;
}

.tp-btn-primary i {
    transition: transform 0.3s ease;
}

.tp-btn-primary:hover i {
    transform: translateX(4px);
}

.tp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: transparent;
    color: #01295E;
    border: 2px solid #01295E;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tp-btn-outline i {
    color: #ECA90D;
    transition: color 0.3s ease;
}

.tp-btn-outline:hover {
    background: #01295E;
    color: #fff;
    transform: translateY(-3px);
}

.tp-btn-outline:hover i {
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .tp-about-section {
        padding: 60px 0;
    }
    
    .tp-about-wrapper {
        gap: 40px;
        flex-direction: column;
    }
    
    .tp-about-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tp-about-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tp-about-content-inner {
        padding-left: 0;
    }
    
    .tp-about-title {
        font-size: 32px;
    }
    
    .tp-about-keypoints {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tp-about-section {
        padding: 50px 0;
    }
    
    .tp-about-title {
        font-size: 28px;
    }
    
    .tp-about-text p {
        font-size: 14px;
    }
    
    .tp-about-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
        gap: 10px;
    }
    
    .tp-about-image-badge i {
        font-size: 22px;
    }
    
    .tp-about-image-badge strong {
        font-size: 14px;
    }
    
    .tp-about-image-badge span {
        font-size: 11px;
    }
    
    .tp-about-keypoints {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .tp-keypoint {
        padding: 12px 14px;
    }
    
    .tp-keypoint-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .tp-keypoint-text h4 {
        font-size: 14px;
    }
    
    .tp-keypoint-text p {
        font-size: 12px;
    }
    
    .tp-btn-primary,
    .tp-btn-outline {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .tp-about-section {
        padding: 40px 0;
    }
    
    .tp-about-title {
        font-size: 24px;
    }
    
    .tp-about-text p {
        font-size: 13px;
    }
    
    .tp-about-badge span {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .tp-about-badge {
        padding: 4px 16px;
    }
    
    .tp-about-image-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 14px;
        gap: 8px;
    }
    
    .tp-about-image-badge i {
        font-size: 18px;
    }
    
    .tp-about-image-badge strong {
        font-size: 12px;
    }
    
    .tp-about-image-badge span {
        font-size: 10px;
    }
    
    .tp-about-keypoints {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tp-keypoint {
        padding: 12px 16px;
    }
    
    .tp-about-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tp-btn-primary,
    .tp-btn-outline {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .tp-about-section {
        padding: 30px 0;
    }
    
    .tp-about-title {
        font-size: 22px;
    }
    
    .tp-about-text p {
        font-size: 13px;
    }
}



/* ============================================
   VISION & MISSION SECTION
   ============================================ */
.tp-vision-mission-section {
    padding: 50px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.tp-vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tp-vm-wrapper {
    position: relative;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.tp-vm-header {
    text-align: center;
    margin-bottom: 50px;
}

.tp-vm-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.1);
    padding: 6px 24px;
    border-radius: 50px;
    border: 1px solid rgba(236, 169, 13, 0.15);
    margin-bottom: 12px;
}

.tp-vm-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #ECA90D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-vm-title {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 10px;
}

.tp-vm-highlight {
    color: #ECA90D;
    position: relative;
}

.tp-vm-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ECA90D;
    border-radius: 2px;
    opacity: 0.3;
}

.tp-vm-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   VISION & MISSION BOXES
   ============================================ */
.tp-vm-box {
    position: relative;
    padding: 35px 40px 35px 90px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 30px rgba(1, 41, 94, 0.04);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.tp-vm-box:last-child {
    margin-bottom: 0;
}

.tp-vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(1, 41, 94, 0.08);
    border-color: rgba(236, 169, 13, 0.2);
}

/* Vision Box Special */
.tp-vision-box {
    border-left: 4px solid #ECA90D;
}

.tp-vision-box:hover {
    border-left-color: #01295E;
}

/* Mission Box Special */
.tp-mission-box {
    border-left: 4px solid #01295E;
}

.tp-mission-box:hover {
    border-left-color: #ECA90D;
}

/* Box Icon */
.tp-vm-box-icon {
    position: absolute;
    left: 30px;
    top: 35px;
    width: 44px;
    height: 44px;
    background: #ECA90D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(236, 169, 13, 0.25);
    transition: all 0.3s ease;
}

.tp-vision-box .tp-vm-box-icon {
    background: #ECA90D;
}

.tp-mission-box .tp-vm-box-icon {
    background: #01295E;
    box-shadow: 0 8px 20px rgba(1, 41, 94, 0.25);
}

.tp-vm-box:hover .tp-vm-box-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Box Number */
.tp-vm-box-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(236, 169, 13, 0.05);
    line-height: 1;
    pointer-events: none;
    font-family: 'Rubik', sans-serif;
}

.tp-mission-box .tp-vm-box-number {
    color: rgba(1, 41, 94, 0.05);
}

/* Box Content */
.tp-vm-box-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 8px;
}

.tp-vm-box-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Mission Points */
.tp-vm-mission-points {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
}

.tp-vm-mission-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    padding: 4px 0;
}

.tp-vm-mission-points li i {
    color: #ECA90D;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tp-vm-mission-points li span {
    font-size: 15px;
    color: #444;
}

/* ============================================
   DECORATIVE SHAPES
   ============================================ */
.tp-vm-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.tp-vm-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.tp-vm-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #ECA90D;
    top: -100px;
    right: -80px;
}

.tp-vm-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: #01295E;
    bottom: -60px;
    left: -60px;
}

.tp-vm-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: #ECA90D;
    top: 50%;
    right: -30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .tp-vision-mission-section {
        padding: 60px 0;
    }
    
    .tp-vm-title {
        font-size: 32px;
    }
    
    .tp-vm-box {
        padding: 30px 30px 30px 80px;
    }
    
    .tp-vm-box-icon {
        left: 25px;
        top: 30px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tp-vm-mission-points {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tp-vm-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -50px;
    }
    
    .tp-vm-shape.shape-2 {
        width: 150px;
        height: 150px;
        bottom: -40px;
        left: -40px;
    }
}

@media (max-width: 768px) {
    .tp-vision-mission-section {
        padding: 50px 0;
    }
    
    .tp-vm-title {
        font-size: 28px;
    }
    
    .tp-vm-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .tp-vm-box {
        padding: 25px 20px 25px 70px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .tp-vm-box-icon {
        left: 18px;
        top: 25px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tp-vm-box-number {
        font-size: 36px;
        right: 18px;
        top: 15px;
    }
    
    .tp-vm-box-content h3 {
        font-size: 20px;
    }
    
    .tp-vm-box-content > p {
        font-size: 14px;
    }
    
    .tp-vm-mission-points li {
        font-size: 14px;
    }
    
    .tp-vm-mission-points li i {
        font-size: 16px;
    }
    
    .tp-vm-mission-points li span {
        font-size: 14px;
    }
    
    .tp-vm-shape.shape-1 {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -30px;
    }
    
    .tp-vm-shape.shape-2 {
        width: 100px;
        height: 100px;
        bottom: -30px;
        left: -30px;
    }
}

@media (max-width: 576px) {
    .tp-vision-mission-section {
        padding: 40px 0;
    }
    
    .tp-vm-header {
        margin-bottom: 35px;
    }
    
    .tp-vm-title {
        font-size: 24px;
    }
    
    .tp-vm-badge {
        padding: 4px 16px;
    }
    
    .tp-vm-badge span {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .tp-vm-subtitle {
        font-size: 13px;
    }
    
    .tp-vm-box {
        padding: 20px 16px 20px 60px;
        border-radius: 14px;
    }
    
    .tp-vm-box-icon {
        left: 14px;
        top: 20px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .tp-vm-box-number {
        font-size: 28px;
        right: 14px;
        top: 12px;
    }
    
    .tp-vm-box-content h3 {
        font-size: 18px;
    }
    
    .tp-vm-box-content > p {
        font-size: 14px;
    }
    
    .tp-vm-mission-points {
        gap: 6px;
    }
    
    .tp-vm-mission-points li {
        font-size: 13px;
        gap: 8px;
    }
    
    .tp-vm-mission-points li i {
        font-size: 14px;
    }
    
    .tp-vm-mission-points li span {
        font-size: 13px;
    }
    
    .tp-vm-shape.shape-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -20px;
    }
    
    .tp-vm-shape.shape-2 {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
    }
    
    .tp-vm-shape.shape-3 {
        width: 60px;
        height: 60px;
        right: -20px;
    }
}

@media (max-width: 400px) {
    .tp-vision-mission-section {
        padding: 30px 0;
    }
    
    .tp-vm-title {
        font-size: 22px;
    }
    
    .tp-vm-box {
        padding: 18px 14px 18px 52px;
    }
    
    .tp-vm-box-icon {
        left: 12px;
        top: 18px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .tp-vm-box-number {
        font-size: 24px;
        right: 12px;
        top: 10px;
    }
    
    .tp-vm-box-content h3 {
        font-size: 16px;
    }
    
    .tp-vm-box-content > p {
        font-size: 13px;
    }
    
    .tp-vm-mission-points li {
        font-size: 12px;
    }
    
    .tp-vm-mission-points li span {
        font-size: 12px;
    }
}



/* ============================================
   MANAGEMENT INFORMATION SECTION
   ============================================ */
.tp-management-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.tp-mgmt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.tp-mgmt-header {
    text-align: center;
    margin-bottom: 50px;
}

.tp-mgmt-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.1);
    padding: 6px 24px;
    border-radius: 50px;
    border: 1px solid rgba(236, 169, 13, 0.15);
    margin-bottom: 12px;
}

.tp-mgmt-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #ECA90D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-mgmt-title {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 10px;
}

.tp-mgmt-highlight {
    color: #ECA90D;
    position: relative;
}

.tp-mgmt-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ECA90D;
    border-radius: 2px;
    opacity: 0.3;
}

.tp-mgmt-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   MANAGEMENT CARD
   ============================================ */
.tp-mgmt-card {
    background: #f8faff;
    border-radius: 24px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 35px rgba(1, 41, 94, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.tp-mgmt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(1, 41, 94, 0.1);
    border-color: rgba(236, 169, 13, 0.2);
}

.tp-mgmt-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 45px 50px;
}

/* ============================================
   AVATAR / IMAGE
   ============================================ */
.tp-mgmt-avatar {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tp-mgmt-avatar-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01295E 0%, #1a3a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    border: 6px solid #ECA90D;
    box-shadow: 0 10px 35px rgba(236, 169, 13, 0.25);
    position: relative;
}

.tp-mgmt-avatar-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(236, 169, 13, 0.15);
}

.tp-mgmt-avatar-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ECA90D;
    padding: 6px 18px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(236, 169, 13, 0.3);
}

.tp-mgmt-avatar-badge i {
    font-size: 14px;
}

/* ============================================
   CONTENT
   ============================================ */
.tp-mgmt-content {
    flex: 1;
}

.tp-mgmt-name {
    font-size: 32px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 4px;
}

.tp-mgmt-designation {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ECA90D;
    margin-bottom: 18px;
}

.tp-mgmt-designation i {
    color: #ECA90D;
}

.tp-mgmt-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tp-mgmt-line {
    flex: 1;
    max-width: 50px;
    height: 2px;
    background: #ECA90D;
}

.tp-mgmt-diamond {
    width: 10px;
    height: 10px;
    background: #ECA90D;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.tp-mgmt-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

/* ============================================
   ATTRIBUTES
   ============================================ */
.tp-mgmt-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 25px;
    margin-bottom: 25px;
}

.tp-mgmt-attr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #01295E;
    padding: 8px 0;
}

.tp-mgmt-attr-item i {
    color: #ECA90D;
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
   CONNECT BUTTON
   ============================================ */
.tp-mgmt-connect {
    margin-top: 5px;
}

.tp-mgmt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #ECA90D;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.3);
}

.tp-mgmt-btn:hover {
    background: #d49a0c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 169, 13, 0.4);
    color: #fff;
}

.tp-mgmt-btn i {
    transition: transform 0.3s ease;
}

.tp-mgmt-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   DECORATIVE SHAPES
   ============================================ */
.tp-mgmt-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.tp-mgmt-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.tp-mgmt-shape.shape-1 {
    width: 250px;
    height: 250px;
    background: #ECA90D;
    top: -80px;
    right: -80px;
}

.tp-mgmt-shape.shape-2 {
    width: 180px;
    height: 180px;
    background: #01295E;
    bottom: -60px;
    left: -60px;
}

.tp-mgmt-shape.shape-3 {
    width: 80px;
    height: 80px;
    background: #ECA90D;
    top: 50%;
    right: -40px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .tp-management-section {
        padding: 60px 0;
    }
    
    .tp-mgmt-title {
        font-size: 32px;
    }
    
    .tp-mgmt-card-inner {
        padding: 35px 35px;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tp-mgmt-avatar {
        flex: 0 0 auto;
    }
    
    .tp-mgmt-avatar-circle {
        width: 150px;
        height: 150px;
        font-size: 48px;
    }
    
    .tp-mgmt-content {
        text-align: center;
    }
    
    .tp-mgmt-designation {
        justify-content: center;
    }
    
    .tp-mgmt-divider {
        justify-content: center;
    }
    
    .tp-mgmt-attributes {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    
    .tp-mgmt-attr-item {
        justify-content: center;
    }
    
    .tp-mgmt-shape.shape-1 {
        width: 180px;
        height: 180px;
        top: -50px;
        right: -50px;
    }
    
    .tp-mgmt-shape.shape-2 {
        width: 120px;
        height: 120px;
        bottom: -40px;
        left: -40px;
    }
}

@media (max-width: 768px) {
    .tp-management-section {
        padding: 50px 0;
    }
    
    .tp-mgmt-title {
        font-size: 28px;
    }
    
    .tp-mgmt-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .tp-mgmt-card-inner {
        padding: 28px 25px;
        gap: 25px;
    }
    
    .tp-mgmt-avatar-circle {
        width: 130px;
        height: 130px;
        font-size: 40px;
        border-width: 5px;
    }
    
    .tp-mgmt-name {
        font-size: 26px;
    }
    
    .tp-mgmt-designation {
        font-size: 14px;
    }
    
    .tp-mgmt-description {
        font-size: 14px;
    }
    
    .tp-mgmt-attributes {
        grid-template-columns: 1fr 1fr;
        gap: 8px 15px;
    }
    
    .tp-mgmt-attr-item {
        font-size: 13px;
    }
    
    .tp-mgmt-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .tp-management-section {
        padding: 40px 0;
    }
    
    .tp-mgmt-header {
        margin-bottom: 35px;
    }
    
    .tp-mgmt-title {
        font-size: 24px;
    }
    
    .tp-mgmt-badge {
        padding: 4px 16px;
    }
    
    .tp-mgmt-badge span {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .tp-mgmt-subtitle {
        font-size: 13px;
    }
    
    .tp-mgmt-card {
        border-radius: 18px;
    }
    
    .tp-mgmt-card-inner {
        padding: 22px 18px;
        gap: 20px;
    }
    
    .tp-mgmt-avatar-circle {
        width: 110px;
        height: 110px;
        font-size: 32px;
        border-width: 4px;
    }
    
    .tp-mgmt-avatar-badge {
        font-size: 10px;
        padding: 4px 14px;
    }
    
    .tp-mgmt-avatar-badge i {
        font-size: 12px;
    }
    
    .tp-mgmt-name {
        font-size: 22px;
    }
    
    .tp-mgmt-designation {
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tp-mgmt-description {
        font-size: 13px;
    }
    
    .tp-mgmt-attributes {
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
    }
    
    .tp-mgmt-attr-item {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .tp-mgmt-attr-item i {
        font-size: 15px;
    }
    
    .tp-mgmt-btn {
        padding: 11px 22px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .tp-mgmt-line {
        max-width: 30px;
    }
    
    .tp-mgmt-diamond {
        width: 8px;
        height: 8px;
    }
    
    .tp-mgmt-shape.shape-1 {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -30px;
    }
    
    .tp-mgmt-shape.shape-2 {
        width: 80px;
        height: 80px;
        bottom: -30px;
        left: -30px;
    }
    
    .tp-mgmt-shape.shape-3 {
        width: 50px;
        height: 50px;
        right: -25px;
    }
}

@media (max-width: 400px) {
    .tp-management-section {
        padding: 30px 0;
    }
    
    .tp-mgmt-title {
        font-size: 22px;
    }
    
    .tp-mgmt-card-inner {
        padding: 18px 14px;
        gap: 16px;
    }
    
    .tp-mgmt-avatar-circle {
        width: 90px;
        height: 90px;
        font-size: 28px;
        border-width: 3px;
    }
    
    .tp-mgmt-name {
        font-size: 20px;
    }
    
    .tp-mgmt-designation {
        font-size: 12px;
    }
    
    .tp-mgmt-description {
        font-size: 13px;
    }
    
    .tp-mgmt-attributes {
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
    }
    
    .tp-mgmt-attr-item {
        font-size: 11px;
    }
    
    .tp-mgmt-attr-item i {
        font-size: 13px;
    }
}



/* ============================================
   WHY CHOOSE US SECTION - BG #f8faff
   ============================================ */
.tp-choose-section {
    padding: 50px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.tp-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.tp-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.tp-choose-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.1);
    padding: 6px 24px;
    border-radius: 50px;
    border: 1px solid rgba(236, 169, 13, 0.15);
    margin-bottom: 12px;
}

.tp-choose-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #ECA90D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-choose-title {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 10px;
}

.tp-choose-highlight {
    color: #ECA90D;
    position: relative;
}

.tp-choose-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ECA90D;
    border-radius: 2px;
    opacity: 0.3;
}

.tp-choose-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   GRID
   ============================================ */
.tp-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ============================================
   ITEM
   ============================================ */
.tp-choose-item {
    position: relative;
    padding: 30px 28px 28px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tp-choose-item:hover {
    transform: translateY(-6px);
    border-color: #ECA90D;
    box-shadow: 0 15px 45px rgba(236, 169, 13, 0.12);
}

/* Icon */
.tp-choose-icon {
    width: 56px;
    height: 56px;
    background: #ECA90D;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(236, 169, 13, 0.2);
}

.tp-choose-item:hover .tp-choose-icon {
    background: #01295E;
    transform: rotateY(180deg);
    box-shadow: 0 8px 20px rgba(1, 41, 94, 0.2);
}

/* Content */
.tp-choose-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.tp-choose-item:hover .tp-choose-content h4 {
    color: #ECA90D;
}

.tp-choose-content p {
    font-size: 14px;
    text-align:justify;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Number */
.tp-choose-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(236, 169, 13, 0.05);
    line-height: 1;
    pointer-events: none;
    font-family: 'Rubik', sans-serif;
}

/* ============================================
   DECORATIVE SHAPES
   ============================================ */
.tp-choose-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.tp-choose-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.tp-choose-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #ECA90D;
    top: -100px;
    right: -100px;
}

.tp-choose-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: #01295E;
    bottom: -80px;
    left: -80px;
}

.tp-choose-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: #ECA90D;
    top: 50%;
    left: -50px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .tp-choose-section {
        padding: 60px 0;
    }
    
    .tp-choose-title {
        font-size: 32px;
    }
    
    .tp-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tp-choose-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -60px;
    }
    
    .tp-choose-shape.shape-2 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }
}

@media (max-width: 768px) {
    .tp-choose-section {
        padding: 50px 0;
    }
    
    .tp-choose-title {
        font-size: 28px;
    }
    
    .tp-choose-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .tp-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tp-choose-item {
        padding: 22px 20px 20px;
        border-radius: 14px;
    }
    
    .tp-choose-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .tp-choose-content h4 {
        font-size: 16px;
    }
    
    .tp-choose-content p {
        font-size: 13px;
    }
    
    .tp-choose-number {
        font-size: 32px;
        right: 14px;
        top: 10px;
    }
}

@media (max-width: 576px) {
    .tp-choose-section {
        padding: 40px 0;
    }
    
    .tp-choose-header {
        margin-bottom: 35px;
    }
    
    .tp-choose-title {
        font-size: 24px;
    }
    
    .tp-choose-badge {
        padding: 4px 16px;
    }
    
    .tp-choose-badge span {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .tp-choose-subtitle {
        font-size: 13px;
    }
    
    .tp-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .tp-choose-item {
        padding: 18px 16px 16px;
        border-radius: 12px;
        text-align: center;
    }
    
    .tp-choose-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 10px;
        margin: 0 auto 10px;
    }
    
    .tp-choose-content h4 {
        font-size: 14px;
    }
    
    .tp-choose-content p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .tp-choose-number {
        display: none;
    }
    
    .tp-choose-shape.shape-1 {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -40px;
    }
    
    .tp-choose-shape.shape-2 {
        width: 100px;
        height: 100px;
        bottom: -30px;
        left: -30px;
    }
    
    .tp-choose-shape.shape-3 {
        width: 60px;
        height: 60px;
        left: -30px;
    }
}

@media (max-width: 400px) {
    .tp-choose-section {
        padding: 30px 0;
    }
    
    .tp-choose-title {
        font-size: 22px;
    }
    
    .tp-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .tp-choose-item {
        padding: 14px 12px 12px;
        border-radius: 10px;
    }
    
    .tp-choose-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    
    .tp-choose-content h4 {
        font-size: 13px;
    }
    
    .tp-choose-content p {
        font-size: 11px;
        display: none;
    }
}

       

