/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Section */
.header {
    background: linear-gradient(to right, #2c3e50, #3498db);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Layout Container */
.header-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

/* Vertical Columns */
.vertical-column {
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 40px;
}


/* Diamond Container */
.diamond-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Diamond Shape */
.diamond {
    width: 100px;
    height: 100px;
    background: #3498db;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    transform: rotate(45deg); /* Create the diamond shape */
    position: relative;
    cursor: pointer; /* Add pointer cursor on hover */
}

/* Text inside diamond */
.diamond::before {
    content: attr(data-label);
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 0.9rem;
}

/* Individual Diamond Colors */
.business {
    background-color: #e67e22;
}

.data {
    background-color: #9b59b6;
}

.application {
    background-color: #1abc9c;
}

.technology {
    background-color: #34495e;
}
.skill {
    background-color: #acbfd1;
}
.project {
    background-color: #1d912e;
}
/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #666;
    font-size: 0.9rem;
}

.card-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.card-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}
