body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1f2937;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-gradient {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
}
.hero-gradient {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
}
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e7ff;
    color: #4f46e5;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
.showcase-card {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    transform: rotate(-3deg);
    transition: transform 0.5s ease-in-out;
}
.showcase-card:hover {
    transform: rotate(0deg) scale(1.03);
}
.showcase-card .profile-img {
    width: 80px;
    height: 80px;
    border-width: 3px;
}
.showcase-card .icon {
    width: 18px;
    margin-right: 6px;
    font-size: 1.2rem;
}


.kanban-board {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.kanban-board::-webkit-scrollbar {
    height: 8px;
}
.kanban-board::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
.kanban-board::-webkit-scrollbar-thumb {
    background: #a855f7; /* Purple thumb */
    border-radius: 10px;
}
.kanban-board::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}
.kanban-column {
    flex-shrink: 0;
    width: 100%;
    max-width: 320px;
}
@media (min-width: 768px) {
    .kanban-board {
        flex-wrap: nowrap;
        justify-content: center;
    }
}

 .floating-icon {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: float-around 10s infinite ease-in-out;
}
.floating-icon:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.floating-icon:nth-child(2) { bottom: 20%; right: 10%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 50%; left: -10%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: -5%; right: 40%; animation-delay: 6s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(-10px, 10px); }
    75% { transform: translate(5px, -5px); }
}
 @media (min-width: 768px) {
    .hero-image-content {
        flex: 1;
        max-width: 50%; /* Take half width */
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero-card-display-wrapper {
    position: relative;
    width: 300px; /* Size of the circular container */
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background for the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: pulse 2s infinite ease-in-out alternate; /* Subtle pulsing effect */
}

.hero-card-display {
    width: 200px; /* Size of the card inside the circle */
    height: 120px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 3px solid #ffffff; /* White border for emphasis */
    transform: rotateY(10deg) rotateX(5deg); /* Slight 3D tilt */
    transition: transform 0.3s ease-in-out;
}
.hero-card-display:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}
.hero-card-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* Inner rounding */
}


.card-preview-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.card-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    width: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.card-wrapper:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.main-content {
    flex-grow: 1;
    background-color: #f8fafc;
    padding: 20px;
}


 @media (max-width: 1024px) {
    .card-preview-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .card-wrapper {
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {

    .card-preview-container {
        justify-content: center;
    }
    .card-wrapper {
        width: 90%;
    }
}
