.custom-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.custom-badge i {
    font-size: 1rem;
}

.custom-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* 🌈 Color Variants */
.custom-badge.digital {
    background: linear-gradient(135deg, #ff7e00, #ffb347); /* orange gradient */
}
.custom-badge.shopify {
    background: linear-gradient(135deg, #95bf47, #5e8e3e); /* Shopify green */
}
.custom-badge.ecommerce {
    background: linear-gradient(135deg, #007bff, #00b4ff); /* blue gradient */
}

.hero-img {
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 150, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 255, 150, 0.25);
}

.hero-img:hover {
    transform: scale(1.03);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 255, 150, 0.25);
}

/* Hide badges on small screens (mobile) */
@media (max-width: 767.98px) {
    .custom-badge {
        display: none !important;
    }
}
/* Reduce top padding on mobile */
@media (max-width: 767.98px) {
    .hero {
        padding-top: 40px !important; /* reduce space for mobile */
        padding-bottom: 60px; /* optional, adjust bottom spacing */
    }
}


.skill-item {
    display: flex;
    align-items: flex-start; /* Align icon with top of text */
    gap: 1rem; /* Space between icon and text */
}

.skill-item i {
    margin-top: 0.25rem; /* Fine-tune vertical alignment with heading */
    flex-shrink: 0; /* Prevent icon from shrinking */
}


/* Two Column Layout Section Styles */

.two-column-section {
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    left: 50% !important;
    right: 50% !important;
    width: 100vw !important;
    position: relative !important;
}

.two-column-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Left Column - Experience Card */
.left-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #1a2332;
}

.left-content-wrapper {
    width: 100%;
    max-width: 500px;
}

.experience-card {
    background-color: #243447;
    border: 1px solid #2d3f54;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    margin-bottom: 2.5rem;
}

.trophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    color: #3dd9b3;
}

.trophy-icon svg {
    width: 100%;
    height: 100%;
}

.experience-card h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #f8fafc;
}

.years-display {
    font-size: 4rem;
    font-weight: 600;
    color: #3dd9b3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.years-text {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Right Column - Content */
.right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #1e2a3a;
}

.content-section {
    max-width: 700px;
    width: 100%;
}

.content-section h1 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #f8fafc;
    line-height: 1.2;
}

.content-section h2 {
    font-size: 2rem;  /* Same size as h1 */
    font-weight: 700;    /* fw-bold class weight */
    margin-bottom: 2rem;
    color: #f8fafc;
    line-height: 1.2;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.tech-heading-left {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #f8fafc;
    text-align: left;
    font-weight: 600;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    background-color: #243447;
    border: 1px solid #2d3f54;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, border-color 0.2s;
}

.tech-item:hover {
    transform: translateY(-2px);
    border-color: #3dd9b3;
}

.tech-icon {
    width: 24px;
    height: 24px;
    color: #3dd9b3;
    flex-shrink: 0;
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f8fafc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .right-column {
        padding: 4rem 3rem;
    }
}

@media (max-width: 968px) {
    .two-column-container {
        grid-template-columns: 1fr;
    }

    .left-column {
        padding: 3rem 2rem;
        min-height: auto;
    }

    .left-content-wrapper {
        max-width: 500px;
    }

    .right-column {
        padding: 3rem 2rem;
    }

    .content-section h1 {
        font-size: 2.25rem;
    }
    
    .content-section h2 {
        font-size: 1.50rem;  /* Same as h1 at this breakpoint */
    }
    
}

@media (max-width: 576px) {
    .experience-card {
        padding: 2rem 1.5rem;
    }

    .years-display {
        font-size: 3rem;
    }

    .content-section h1 {
        font-size: 1.75rem;
    }
    
    .content-section h2 {
        font-size: 1.50rem;  /* Same as h1 at this breakpoint */
    }

    .content-section p {
        font-size: 1rem;
    }

    .right-column {
        padding: 2rem 1.5rem;
    }

    .left-column {
        padding: 2rem 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-heading-left {
        font-size: 1.25rem;
    }
}





/* Full Width Two Column Section with Lottie Animation */
/* Full Width Two Column Section with Lottie Animation */
.two-column-lottie {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 80px 0;
    padding-left: 70px;
    position: relative;
    overflow: hidden;
}

.two-column-lottie::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none; /* ADD THIS */
}

/* Left column content */
.two-column-lottie h2 {
    color: #1e2a38;
    margin-bottom: 1rem;
    position: relative; /* ADD THIS */
    z-index: 2; /* ADD THIS */
}

.two-column-lottie p {
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
    position: relative; /* ADD THIS */
    z-index: 2; /* ADD THIS */
}

/* FIX THE BUTTON */
.two-column-lottie .btn {
    position: relative; /* ADD THIS */
    z-index: 10; /* ADD THIS */
    pointer-events: auto; /* ADD THIS */
}

/* Lottie animation container */
.two-column-lottie dotlottie-wc {
    width: 600px;
    height: 700px;
    max-width: 100%;
    pointer-events: none; /* ADD THIS - prevents animation from blocking clicks */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .two-column-lottie {
        padding: 60px 15px;
    }

    .two-column-lottie .col-md-6 {
        text-align: center;
        position: relative; /* ADD THIS */
        z-index: 5; /* ADD THIS */
    }

    .two-column-lottie dotlottie-wc {
        width: 100%;
        height: auto;
        max-height: 400px; /* ADD THIS - limit height on mobile */
        pointer-events: none; /* KEEP THIS */
    }
    
    /* Ensure button is always clickable on mobile */
    .two-column-lottie .btn {
        display: inline-block;
        position: relative;
        z-index: 100 !important;
        pointer-events: auto !important;
        margin-top: 1rem;
    }
}


@media (max-width: 767.98px) {
    .hero .d-flex.mt-5.flex-wrap {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem;
        margin-bottom: 2rem !important; /* Add gap below stats */
    }
    
    /* First item (20+ Shopify Stores) - full width centered */
    .hero .d-flex.mt-5.flex-wrap > div:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 0 1rem 0 !important;
    }
    
    /* Remaining 3 items - side by side */
    .hero .d-flex.mt-5.flex-wrap > div:not(:first-child) {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        margin: 0 !important;
        text-align: center;
    }
}





@media (max-width: 414px) {
    /* Extra spacing for iPhone 11 Pro and similar devices */
    .hero .d-flex.mt-5.flex-wrap {
        margin-top: 3rem !important;
    }
    
    .hero .btn,
    .hero a[class*="btn"] {
        margin-bottom: 2rem !important;
    }
}





/* Footer CSS */

.footer-social {
    background-color: #050801; /* Matches your dark theme */
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    margin-top: 0 !important;

}

.footer-social .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-social .social-link {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-social .social-link i {
    background-color: #fff;
    color: inherit;
    border-radius: 50%;
    padding: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}


/* Brand colors */
.footer-social .social-link.linkedin i { color: #0A66C2; }
.footer-social .social-link.instagram i { color: #E1306C; }
.footer-social .social-link.facebook i { color: #1877F2; }

.footer-social .social-link:hover {
    transform: translateY(-3px);
    color: #03e9f4;
}

.footer-social .contact-btn {
    background-color: #03e9f4;
    color: #050801;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .contact-btn:hover {
    background-color: #02c3d7;
    transform: scale(1.05);
}

.footer-copy{
padding-top: 40px;
font-size: 13px;
}

/* Responsive layout */
@media (max-width: 768px) {
    .footer-social .container {
        flex-direction: column;
        gap: 15px;
    }
}




/* OCT 29-cont */

/* Make html and body full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
/* Create a flex container for the page */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Main content should grow to push footer down */
main,
.main-content,
#app,
body > div:not(.footer-social) {
    flex: 1 0 auto;
}
/* Footer should stay at bottom */
.footer-social,
footer {
    flex-shrink: 0;
    margin-top: auto !important;
}











/* About Page Styles - Unique Namespace to Avoid Conflicts */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.febin-about-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
}

.febin-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.febin-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.febin-about-subtitle {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.febin-about-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.febin-about-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Content */
.febin-about-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.febin-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.febin-about-image-wrapper {
    position: relative;
}

.febin-about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.febin-about-image:hover {
    transform: translateY(-10px);
}

.febin-about-info-title {
    color: #10b981;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.febin-about-info-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.febin-about-description {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.febin-about-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.febin-about-detail-item {
    display: flex;
    gap: 10px;
}

.febin-about-detail-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 60px;
}

.febin-about-detail-value {
    color: #4a5568;
}

.febin-about-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.febin-about-cv-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.febin-about-cv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.febin-about-social {
    display: flex;
    gap: 15px;
}

.febin-about-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.febin-about-social-link:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Education Section */
.febin-education-section {
    margin-bottom: 60px;
}

.febin-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.febin-section-subtitle {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.febin-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
}

.febin-education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.febin-education-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.febin-education-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.febin-education-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.febin-education-content {
    flex: 1;
}

.febin-education-degree {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.febin-education-school {
    color: #10b981;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.febin-education-year {
    color: #718096;
    font-size: 14px;
    margin-bottom: 12px;
}

.febin-education-desc {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.7;
}

/* Services Section */
.febin-services-section {
    margin-bottom: 60px;
}

.febin-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.febin-service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.febin-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.febin-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.febin-service-card:hover .febin-service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.febin-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.febin-service-description {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .febin-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .febin-about-content {
        padding: 40px 30px;
    }
    
    .febin-about-title {
        font-size: 40px;
    }
    
    .febin-about-info-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .febin-about-body {
        padding: 20px 15px;
    }
    
    .febin-about-title {
        font-size: 36px;
    }
    
    .febin-section-title {
        font-size: 32px;
    }
    
    .febin-about-content {
        padding: 30px 20px;
    }
    
    .febin-about-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .febin-education-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .febin-education-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .febin-about-title {
        font-size: 28px;
    }
    
    .febin-section-title {
        font-size: 26px;
    }
    
    .febin-about-info-heading {
        font-size: 22px;
    }
    
    .febin-about-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .febin-about-cv-btn {
        width: 100%;
        text-align: center;
    }
}






/* Febin Skills Section - Scoped Styles */
.febin-skills-section {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 60px 0px;
    margin-top: -70px;
    margin-bottom: 0;
}

.febin-skills-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Header Styles */
.febin-skills-header {
    text-align: center;
    margin-bottom: 60px;
}

.febin-skills-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.febin-skills-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.febin-skills-logo-text {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.febin-skills-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
}

.febin-skills-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Cards Container */
.febin-skills-cards-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual Card Styles */
.febin-skills-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 20px 20px 20px 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.febin-skills-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Card Backgrounds */
.febin-skills-card-01 .febin-skills-card-content {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 15px;
    padding: 20px;
    margin: -5px -5px -5px -5px;
}

.febin-skills-card-02 .febin-skills-card-content {
    background: linear-gradient(135deg, #f0f5ff 0%, #e0ebff 100%);
    border-radius: 15px;
    padding: 20px;
    margin: -5px -5px -5px -5px;
}

.febin-skills-card-03 .febin-skills-card-content {
    background: linear-gradient(135deg, #f5f0ff 0%, #ebe0ff 100%);
    border-radius: 15px;
    padding: 20px;
    margin: -5px -5px -5px -5px;
}

.febin-skills-card-04 .febin-skills-card-content {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 15px;
    padding: 20px;
    margin: -5px -5px -5px -5px;
}

.febin-skills-card-05 .febin-skills-card-content {
    background: linear-gradient(135deg, #f0f5ff 0%, #e0ebff 100%);
    border-radius: 15px;
    padding: 20px;
    margin: -5px -5px -5px -5px;
}

/* Thumbtack Styles */
.febin-skills-thumbtack {
    position: absolute;
    top: -12px;
    right: 30px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.febin-skills-thumbtack::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.febin-skills-thumbtack::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 2px 2px;
}

.febin-skills-thumbtack-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.febin-skills-thumbtack-blue {
    background: linear-gradient(135deg, #6b7fff 0%, #8c9cff 100%);
}

.febin-skills-thumbtack-purple {
    background: linear-gradient(135deg, #b57fff 0%, #c99fff 100%);
}

/* Card Content */
.febin-skills-card-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 12px;
    font-style: italic;
}

.febin-skills-card-02 .febin-skills-card-number,
.febin-skills-card-05 .febin-skills-card-number {
    color: #6b7fff;
}

.febin-skills-card-03 .febin-skills-card-number {
    color: #b57fff;
}

.febin-skills-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    margin-top: 0;
}

.febin-skills-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
}

/* Card Positioning - Desktop */
.febin-skills-card-01 {
    grid-column: 1;
    grid-row: 1;
}

.febin-skills-card-02 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 80px;
}

.febin-skills-card-03 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 20px;
}

.febin-skills-card-04 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 100px;
}

.febin-skills-card-05 {
    grid-column: 1;
    grid-row: 3;
    margin-top: 40px;
}

/* Footer Badge */
.febin-skills-footer-badge {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 120px;
    padding-left: 20px;
}

.febin-skills-footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #2c3e50;
    flex-shrink: 0;
}

.febin-skills-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.febin-skills-footer-text {
    font-size: 16px;
    line-height: 1.5;
    color: #5a6c7d;
    margin: 0;
}

.febin-skills-highlight {
    color: #ff6b35;
    font-weight: 600;
}

/* Dashed Connecting Lines - Desktop Only */
.febin-skills-cards-container::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 50%;
    width: 2px;
    height: calc(100% - 240px);
    background-image: repeating-linear-gradient(
        to bottom,
        #d0d7de,
        #d0d7de 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .febin-skills-section {
        padding: 40px 15px;
    }

    .febin-skills-container {
        padding: 0 20px;
    }

    .febin-skills-main-title {
        font-size: 32px;
    }

    .febin-skills-subtitle {
        font-size: 16px;
    }

    .febin-skills-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }

    /* Reset all margin-top for mobile */
    .febin-skills-card-02,
    .febin-skills-card-03,
    .febin-skills-card-04,
    .febin-skills-card-05 {
        margin-top: 0 !important;
        grid-column: 1;
    }

    .febin-skills-card-01 {
        grid-row: 1;
    }

    .febin-skills-card-02 {
        grid-row: 2;
    }

    .febin-skills-card-03 {
        grid-row: 3;
    }

    .febin-skills-card-04 {
        grid-row: 4;
    }

    .febin-skills-card-05 {
        grid-row: 5;
    }

    .febin-skills-footer-badge {
        margin-top: 0;
        grid-column: 1;
        grid-row: 6;
        justify-content: center;
        padding-left: 0;
    }

    /* Hide connecting lines on mobile */
    .febin-skills-cards-container::before {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .febin-skills-section {
        padding: 30px 10px;
    }

    .febin-skills-container {
        padding: 0 10px;
    }

    .febin-skills-header {
        margin-bottom: 40px;
    }

    .febin-skills-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .febin-skills-logo-text {
        font-size: 24px;
    }

    .febin-skills-main-title {
        font-size: 26px;
    }

    .febin-skills-subtitle {
        font-size: 14px;
    }

    .febin-skills-card {
        padding: 30px 20px;
        min-height: 200px;
    }

    .febin-skills-card-title {
        font-size: 20px;
    }

    .febin-skills-card-description {
        font-size: 13px;
    }

    .febin-skills-card-number {
        font-size: 20px;
    }

    .febin-skills-footer-avatar {
        width: 50px;
        height: 50px;
    }

    .febin-skills-footer-text {
        font-size: 14px;
    }
}



/* Contact Section Styles */
.febin-contact-section {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
    padding: 80px 0px;
    margin-top: -80px;
    margin-bottom: 0;
}


.febin-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.febin-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Info */
.febin-contact-info {
    padding-right: 40px;
}

.febin-contact-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #6b7fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.febin-contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.febin-contact-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

.febin-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.febin-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.febin-contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.febin-contact-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.febin-contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

/* Right Side - Form */
.febin-contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
}

.febin-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.febin-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.febin-form-label {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 0;
}

.febin-form-input,
.febin-form-select,
.febin-form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    color: #1a202c;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.febin-form-input::placeholder,
.febin-form-textarea::placeholder {
    color: #cbd5e1;
}

.febin-form-input:focus,
.febin-form-select:focus,
.febin-form-textarea:focus {
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.febin-form-input.error,
.febin-form-select.error,
.febin-form-textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.febin-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.febin-form-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 150px;
}

.febin-phone-input-wrapper {
    position: relative;
    display: flex;
    gap: 8px;
}

.febin-phone-code-select {
    width: 110px;
    padding: 12px 10px;
    font-size: 15px;
    color: #1a202c;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 28px;
    flex-shrink: 0;
}

.febin-phone-code-select:focus {
    background-color: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.febin-phone-input {
    flex: 1;
    padding-left: 14px;
}

.febin-form-error {
    font-size: 13px;
    color: #ef4444;
    min-height: 18px;
    display: block;
}

.febin-submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    align-self: flex-start;
}

.febin-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.febin-submit-btn:active {
    transform: translateY(0);
}

.febin-submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .febin-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .febin-contact-info {
        padding-right: 0;
        text-align: center;
    }

    .febin-contact-title {
        font-size: 36px;
    }

    .febin-contact-details {
        align-items: center;
    }

    .febin-contact-item {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .febin-contact-section {
        padding: 60px 15px;
    }

    .febin-contact-title {
        font-size: 32px;
    }

    .febin-contact-description {
        font-size: 15px;
    }

    .febin-contact-form-wrapper {
        padding: 30px 20px;
    }

    .febin-contact-form {
        gap: 20px;
    }

    .febin-submit-btn {
        width: 100%;
        justify-content: center;
    }
}




