.sticky:after {
    background: url(../images/shadow.png) center bottom no-repeat rgba(0, 0, 0, 0);
    bottom: -9px;
    content: "";
    height: 9px;
    position: absolute;
    width: 100%;
}

.txt-ttlot{
    color: var(--ttlit);
}

.txt-ttlbg{
    color: var(--ttlbg);
}

/* Team Profile Custom Styles */
.profile-image-section {
    position: relative;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11, 66, 81, 0.2);
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.profile-image-wrapper:hover img {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-color3) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-text {
    color: var(--ttlbg);
    font-weight: 600;
    font-size: 0.9em;
}

.profile-content-section {
    padding: 20px;
}

.profile-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.header-content {
    flex: 1;
}

.header-content h3 {
    color: var(--ttlbg);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-social-icons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    color: white;
}

.header-social-link.email {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-color3) 100%);
    color: var(--ttlbg);
}

.header-social-link.phone {
    background: linear-gradient(135deg, var(--ttlbg) 0%, var(--theme2) 100%);
    color: var(--theme);
}

.header-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leadership-style {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    border-left: 4px solid var(--theme);
}

.leadership-title {
    color: var(--ttlbg);
    font-size: 1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.leadership-title i {
    color: var(--theme);
}

.leadership-text {
    color: var(--ttlbg);
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

.role-badge {
    background: linear-gradient(135deg, var(--ttlit) 0%, var(--theme) 100%);
    color: var(--ttlbg);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 600;
}

.profile-description {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05em;
}

.skills-section {
    margin-top: 30px;
}

.skills-title {
    color: var(--ttlbg);
    font-size: 1.2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skills-title i {
    color: var(--theme);
}

.education-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(11, 66, 81, 0.1);
    color: var(--ttlbg);
}

.education-title h3 {
    color: var(--ttlbg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-title h3 i {
    color: var(--theme);
    font-size: 1.2em;
}

.education-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.education-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 66, 81, 0.08);
    border-left: 4px solid var(--theme);
}

.education-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(11, 66, 81, 0.15);
}

.education-year {
    flex-shrink: 0;
}

.year-badge {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-color3) 100%);
    color: var(--ttlbg);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    display: inline-block;
}

.education-content {
    flex: 1;
}

.education-content h5 {
    color: var(--ttlbg);
    margin-bottom: 12px;
    font-weight: 600;
}

.education-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.experience-card {
    background: linear-gradient(135deg, #0B4251 0%, #18185E 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(11, 66, 81, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--theme);
    color: white;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 66, 81, 0.25);
}

.experience-card h5 {
    color: var(--ttlit);
}

.experience-card p {
    color: rgba(255, 255, 255, 0.9);
}

.experience-title h3 {
    color: var(--ttlbg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-title h3 i {
    color: var(--theme);
    font-size: 1.2em;
}

.philosophy-section {
    background: linear-gradient(135deg, #87BBD7 0%, #0B4251 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(135, 187, 215, 0.2);
    color: white;
}

.philosophy-title h3 {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.philosophy-title h3 i {
    color: var(--theme);
    font-size: 1.2em;
}

.philosophy-content {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.achievements-section {
    background: linear-gradient(135deg, #F2C864 0%, #F98600 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(242, 200, 100, 0.2);
    color: var(--ttlbg);
}

.achievements-title h3 {
    color: var(--ttlbg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements-title h3 i {
    color: var(--ttlbg);
    font-size: 1.2em;
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 66, 81, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.3s ease;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    color: var(--ttlbg);
}

.achievements-list li:hover {
    background: rgba(255, 255, 255, 0.3);
}

.achievements-list li i {
    color: var(--ttlbg);
    margin-top: 4px;
}

.expertise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(11, 66, 81, 0.1);
}

.expertise-title h3 {
    color: var(--ttlbg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-title h3 i {
    color: var(--theme2);
    font-size: 1.2em;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.expertise-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 66, 81, 0.08);
    border: 1px solid var(--ttlit);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(11, 66, 81, 0.15);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ttlbg) 0%, var(--theme2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--theme);
    font-size: 1.5em;
}

.expertise-card h6 {
    color: var(--ttlbg);
    font-weight: 600;
    margin-bottom: 10px;
}

.expertise-card p {
    color: var(--text-color);
    font-size: 0.9em;
    line-height: 1.5;
}

.certifications-section {
    background: linear-gradient(135deg, #87BBD7 0%, #F2C864 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(135, 187, 215, 0.2);
    color: var(--ttlbg);
}

.certifications-title h3 {
    color: var(--ttlbg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.certifications-title h3 i {
    color: var(--ttlbg);
    font-size: 1.2em;
}

.certifications-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.certification-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 66, 81, 0.08);
    color: var(--ttlbg);
}

.certification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(11, 66, 81, 0.12);
}

.cert-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ttlbg) 0%, var(--theme2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme);
    font-size: 1.3em;
    flex-shrink: 0;
}

.certification-item p {
    margin: 0;
    color: var(--ttlbg);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-wrapper {
        grid-template-columns: 1fr;
    }
    
    .education-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .profile-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-social-icons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .profile-header h3 {
        font-size: 1.5em;
    }
    
    .experience-card,
    .philosophy-section,
    .achievements-section,
    .expertise-section,
    .certifications-section,
    .education-section {
        padding: 20px;
    }
}