/* ================================================
   SOCIAL ICONS - MAXIMUM CLICKABILITY VERSION
   ================================================ */

/* Reset & force stacking context */
.social-links,
.social-menu,
.social-icon {
    position: relative !important;
    z-index: 9999 !important;
    isolation: isolate !important;
}

/* Very important - force clickability */
.social-icon,
.social-icon *,
.social-icon i {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none;
}

/* Basic appearance */
.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.35s ease;
    font-size: 1.4rem;
}

/* Hover effects */
.social-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    color: #ffffff !important;
}

/* Platform specific hover colors */
.facebook:hover    { background-color: #1877F2 !important; border-color: #1877F2 !important; }
.linkedin:hover    { background-color: #0077B5 !important; border-color: #0077B5 !important; }
.youtube:hover     { background-color: #FF0000  !important; border-color: #FF0000  !important; }
.tiktok:hover      { background-color: #000000 !important; border-color: #000000 !important; }

/* Prevent parents from blocking clicks */
.contact-info-card,
.contact-info-card *,
.contact,
.section-padding,
.container {
    pointer-events: auto !important;
}

/* Disable pointer events on decorative/floating elements */
.floating-shapes,
.shape,
[class*="shape"],
.overlay,
.bg-decoration,
.bg-layer,
.hero::before,
.hero::after {
    pointer-events: none !important;
}

/* ================================================
   YOUR ORIGINAL STYLES (kept mostly unchanged)
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:ital@1&family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&family=Lato:wght@400;700&family=Playfair+Display:ital,wght@1,500&display=swap');

/* Global & Utility */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About section */
.about {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: #333;
}

.about-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    padding-left: 20px;
    border-left: 5px solid #d4a017;
    margin: 25px 0;
}

.accent-text,
.highlight,
.stat {
    color: #d4a017;
    font-weight: 600;
}

.experience-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.serif-italic {
    font-family: 'Lora', serif;
    font-style: italic;
}

/* Skill tags */
.skill-tag {
    display: inline-block;
    background: #f4f4f4;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 50px;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.skill-tag:hover {
    background: #2c3e50;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact card */
.contact-info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    z-index: 10;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #e7f1ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
}