/* About Page Specific Styles */

/* Hero Banner */
.about-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.7s;
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--aqua-light);
}

.breadcrumb-nav .current {
    color: var(--aqua-light);
    font-weight: 600;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

/* Personal Introduction Section */
.intro-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--soft-gray) 100%);
}

.profile-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.profile-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(64, 169, 255, 0.3);
}

.image-decoration {
    position: absolute;
    border: 3px solid var(--primary-blue);
    border-radius: 20px;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: -20px;
    border-color: var(--aqua);
    animation-delay: 3s;
}

.profile-stats-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
    animation: bounceIn 1s ease-out;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-card h4 {
    color: var(--dark-gray);
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.stat-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.intro-content .text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-gray);
    font-size: 1.3rem;
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
}

.info-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Skills & Expertise Section */
.skills-expertise-section {
    background: var(--soft-gray);
}

.skill-category {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.category-title {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-title i {
    color: var(--primary-blue);
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.skill-badge {
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--white) 100%);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.skill-badge:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.skill-badge i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.skill-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.skill-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--medium-gray);
}

.skill-level::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gradient-1);
    width: var(--level);
    transition: width 2s ease-out;
}

.competency-cards {
    display: grid;
    gap: 1.5rem;
}

.competency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: start;
    gap: 1.5rem;
    transition: var(--transition);
}

.competency-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.competency-card h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.competency-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.competency-level {
    width: 100%;
    height: 6px;
    background: var(--medium-gray);
    border-radius: 3px;
    overflow: hidden;
}

.level-bar {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 2s ease-out;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--white);
}

.philosophy-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
}

.philosophy-item:hover {
    background: var(--soft-gray);
    transform: translateX(10px);
}

.philosophy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(64, 169, 255, 0.1) 0%, rgba(0, 206, 209, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.philosophy-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.philosophy-text h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.philosophy-text p {
    color: var(--text-gray);
    margin: 0;
}

/* Approach Visual */
.approach-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.approach-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.approach-element:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-1);
    color: var(--white);
}

.approach-element:hover i {
    color: var(--white);
}

.approach-element i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    transition: var(--transition);
}

.approach-element span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Position approach elements in a circle */
.element-1 { top: 0; left: 50%; transform: translateX(-50%); }
.element-2 { top: 25%; right: 0; }
.element-3 { bottom: 25%; right: 0; }
.element-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.element-5 { bottom: 25%; left: 0; }
.element-6 { top: 25%; left: 0; }

.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.connecting-lines svg {
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
}

/* Achievements Section */
.achievements-section {
    background: var(--soft-gray);
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(64, 169, 255, 0.1) 50%, transparent 100%);
    transition: left 0.8s ease;
}

.achievement-item:hover::before {
    left: 100%;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.achievement-content h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: var(--text-gray);
    margin: 0;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.certification-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(64, 169, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.certification-card:hover::before {
    animation: shimmer 0.8s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.certification-card:hover .cert-logo {
    transform: rotateY(360deg);
}

.cert-logo i {
    font-size: 2.5rem;
    color: var(--white);
}

.certification-card h5 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.certification-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cert-date {
    display: inline-block;
    background: rgba(64, 169, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Interests Section */
.interests-section {
    background: var(--white);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.interest-card {
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.interest-card:hover::before {
    opacity: 0.9;
}

.interest-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.interest-card:hover * {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.interest-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.interest-card:hover .interest-icon {
    background: var(--white);
    transform: rotateZ(360deg);
}

.interest-card:hover .interest-icon i {
    color: var(--primary-blue);
}

.interest-icon i {
    font-size: 2rem;
    color: var(--white);
}

.interest-card h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.interest-card p {
    color: var(--text-gray);
    margin: 0;
    transition: var(--transition);
}

/* Call to Action */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--aqua) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-cta-section .cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-cta-section .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.about-cta-section .btn {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.about-cta-section .btn:hover {
    background: var(--soft-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design - Enhanced for better mobile experience */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .about-hero .hero-title {
        font-size: 3.5rem;
    }
    
    .profile-image-wrapper {
        width: 350px;
        height: 350px;
    }
    
}

/* Tablets */
@media (max-width: 992px) {
    .about-hero {
        min-height: 45vh;
        margin-top: 70px;
    }
    
    .about-hero .hero-title {
        font-size: 3rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-pattern {
        height: 70px;
    }
    
    .profile-image-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .stat-card {
        padding: 1.2rem;
        min-width: 100px;
    }
    
    .stat-card i {
        font-size: 1.6rem;
    }
    
    .stat-card h4 {
        font-size: 1.6rem;
    }
    
    .info-item i {
        font-size: 1.1rem;
    }
    
    .approach-visual {
        max-width: 350px;
        height: 350px;
    }
    
    .central-hub {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
    
    .approach-element {
        width: 70px;
        height: 70px;
    }
    
    .approach-element i {
        font-size: 1.3rem;
    }
    
    .approach-element span {
        font-size: 0.7rem;
    }
    
    .skill-badge i {
        font-size: 1.8rem;
    }
    
    .skill-badge span {
        font-size: 0.85rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .philosophy-icon {
        width: 45px;
        height: 45px;
    }
    
    .philosophy-icon i {
        font-size: 1.3rem;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
    
    .cert-logo {
        width: 70px;
        height: 70px;
    }
    
    .cert-logo i {
        font-size: 2.2rem;
    }
    
    .interest-icon {
        width: 70px;
        height: 70px;
    }
    
    .interest-icon i {
        font-size: 1.8rem;
    }
}

/* Large Mobile Devices and Small Tablets */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        margin-top: 60px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.95rem;
        gap: 0.8rem;
    }
    
    .hero-pattern {
        height: 50px;
    }
    
    .profile-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .profile-stats-floating {
        position: static;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: 90px;
    }
    
    .stat-card i {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-card h4 {
        font-size: 1.4rem;
    }
    
    .stat-card p {
        font-size: 0.8rem;
    }
    
    .intro-content {
        text-align: center;
        margin-top: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .quick-info {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .info-item {
        gap: 0.6rem;
        font-size: 0.95rem;
    }
    
    .info-item i {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .tech-tags span {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .skill-category {
        padding: 1.2rem;
    }
    
    .category-title {
        font-size: 1.1rem;
        gap: 0.6rem;
    }
    
    .category-title i {
        font-size: 1.1rem;
    }
    
    .skill-grid {
        grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
        gap: 0.8rem;
    }
    
    .skill-badge {
        padding: 0.8rem;
    }
    
    .skill-badge i {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .skill-badge span {
        font-size: 0.8rem;
    }
    
    .competency-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .competency-card h4 {
        font-size: 1.1rem;
    }
    
    .competency-card p {
        font-size: 0.9rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    .icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .philosophy-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .philosophy-icon {
        width: 40px;
        height: 40px;
    }
    
    .philosophy-icon i {
        font-size: 1.2rem;
    }
    
    .philosophy-text h4 {
        font-size: 1.1rem;
    }
    
    .philosophy-text p {
        font-size: 0.95rem;
    }
    
    .approach-visual {
        max-width: 300px;
        height: 300px;
    }
    
    .central-hub {
        width: 85px;
        height: 85px;
        font-size: 0.8rem;
    }
    
    .approach-element {
        width: 60px;
        height: 60px;
    }
    
    .approach-element i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .approach-element span {
        font-size: 0.65rem;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .achievement-icon {
        width: 45px;
        height: 45px;
    }
    
    .achievement-icon i {
        font-size: 1.3rem;
    }
    
    .achievement-content h4 {
        font-size: 1.1rem;
    }
    
    .achievement-content p {
        font-size: 0.95rem;
    }
    
    .certification-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.2rem;
    }
    
    .certification-card {
        padding: 1.5rem;
    }
    
    .cert-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .cert-logo i {
        font-size: 1.8rem;
    }
    
    .certification-card h5 {
        font-size: 1rem;
    }
    
    .certification-card p {
        font-size: 0.85rem;
    }
    
    .cert-date {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .interests-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .interest-card {
        padding: 1.5rem;
    }
    
    .interest-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .interest-icon i {
        font-size: 1.5rem;
    }
    
    .interest-card h4 {
        font-size: 1.1rem;
    }
    
    .interest-card p {
        font-size: 0.95rem;
    }
    
    .cta-wrapper {
        padding: 2rem;
    }
    
    .about-cta-section .cta-title {
        font-size: 1.8rem;
    }
    
    .about-cta-section .cta-description {
        font-size: 1rem;
    }
    
    .about-cta-section .row {
        text-align: center;
    }
}

/* Medium Mobile Devices */
@media (max-width: 576px) {
    .about-hero {
        min-height: 35vh;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .profile-image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .profile-image {
        border-radius: 15px;
    }
    
    .decoration-1,
    .decoration-2 {
        display: none;
    }
    
    .stat-card {
        padding: 0.8rem;
        min-width: 80px;
    }
    
    .stat-card i {
        font-size: 1.2rem;
    }
    
    .stat-card h4 {
        font-size: 1.2rem;
    }
    
    .stat-card p {
        font-size: 0.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .quick-info {
        gap: 1rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .info-item i {
        font-size: 0.9rem;
    }
    
    
    
    .skill-category {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .skill-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .skill-badge {
        padding: 0.6rem;
    }
    
    .skill-badge i {
        font-size: 1.3rem;
    }
    
    .skill-badge span {
        font-size: 0.75rem;
    }
    
    .competency-card {
        padding: 1.2rem;
    }
    
    .competency-card h4 {
        font-size: 1rem;
    }
    
    .competency-card p {
        font-size: 0.85rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .philosophy-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .philosophy-icon {
        width: 35px;
        height: 35px;
    }
    
    .philosophy-icon i {
        font-size: 1rem;
    }
    
    .philosophy-text h4 {
        font-size: 1rem;
    }
    
    .philosophy-text p {
        font-size: 0.9rem;
    }
    
    .approach-visual {
        max-width: 250px;
        height: 250px;
    }
    
    .central-hub {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
        font-weight: 600;
    }
    
    .approach-element {
        width: 50px;
        height: 50px;
    }
    
    .approach-element i {
        font-size: 0.9rem;
    }
    
    .approach-element span {
        font-size: 0.6rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
    }
    
    .achievement-icon i {
        font-size: 1.1rem;
    }
    
    .achievement-content h4 {
        font-size: 1rem;
    }
    
    .achievement-content p {
        font-size: 0.9rem;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .certification-card {
        padding: 1.2rem;
    }
    
    .cert-logo {
        width: 50px;
        height: 50px;
    }
    
    .cert-logo i {
        font-size: 1.5rem;
    }
    
    .certification-card h5 {
        font-size: 0.95rem;
    }
    
    .certification-card p {
        font-size: 0.8rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .interest-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .interest-icon {
        width: 50px;
        height: 50px;
    }
    
    .interest-icon i {
        font-size: 1.3rem;
    }
    
    .interest-card h4 {
        font-size: 1rem;
    }
    
    .interest-card p {
        font-size: 0.9rem;
    }
    
    .cta-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .about-cta-section .cta-title {
        font-size: 1.5rem;
    }
    
    .about-cta-section .cta-description {
        font-size: 0.95rem;
    }
    
    .about-cta-section .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 400px) {
    .about-hero {
        min-height: 30vh;
        margin-top: 50px;
    }
    
    .about-hero .hero-title {
        font-size: 1.7rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .stat-card {
        min-width: 70px;
    }
    
    .stat-card i {
        font-size: 1rem;
    }
    
    .stat-card h4 {
        font-size: 1rem;
    }
    
    .stat-card p {
        font-size: 0.7rem;
    }
    
    .skill-badge {
        padding: 0.5rem;
    }
    
    .skill-badge i {
        font-size: 1.1rem;
    }
    
    .skill-badge span {
        font-size: 0.7rem;
        font-weight: 500;
    }
    
    .approach-visual {
        max-width: 220px;
        height: 220px;
    }
    
    .central-hub {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
    }
    
    .approach-element {
        width: 45px;
        height: 45px;
    }
    
    .approach-element i {
        font-size: 0.8rem;
    }
    
    .approach-element span {
        font-size: 0.55rem;
    }
    
    .cert-logo {
        width: 45px;
        height: 45px;
    }
    
    .cert-logo i {
        font-size: 1.3rem;
    }
    
    .interest-icon {
        width: 45px;
        height: 45px;
    }
    
    .interest-icon i {
        font-size: 1.1rem;
    }
    
    .about-cta-section .cta-title {
        font-size: 1.3rem;
    }
    
    .about-cta-section .cta-description {
        font-size: 0.9rem;
    }
    
    .about-cta-section .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .skill-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}