/*Start Collaboration With Us */
:root {
    --han-primary: #1d4ed8;
    --han-text: #1a1a1a;
    --han-gray: #6b7280;
    --han-font: 'Bricolage Grotesque', sans-serif;
}

.han-collaboration {
    padding: 40px 20px;
    background: #ffffff;
    font-family: var(--han-font);
}

.collaboration-han-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Header Styles */
.han-breadcrumb {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 30px;
}

.han-sep { margin: 0 8px; color: #d1d5db; }
.han-current { color: var(--han-gray); }

.han-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--han-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.han-icon-home svg { width: 16px; height: 16px; }

.han-header-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.han-main-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
    color: var(--han-text);
    font-family: var(--han-font);
    max-width: 600px;
}

.han-description {
    font-size: 18px;
    color: var(--han-gray);
    line-height: 1.6;
    margin: 10px 0 0 0;
}

/* Grid & Cards */
.han-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.han-card {
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.han-blue { background-color: #f1f3ff; }
.han-green { background-color: #ecf7f0; }
.han-beige { background-color: #f9ebd7; }

.han-icon-circle {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    margin-bottom: 30px;
}

.han-icon-box {
    background: var(--han-primary);
    padding: 10px;
    border-radius: 10px;
    display: flex;
}

.han-icon-box svg { width: 24px; height: 24px; color: #fff; }

.han-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--han-text);
}

.han-card p {
    font-size: 15px;
    color: var(--han-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .han-header-content { grid-template-columns: 1fr; gap: 20px; }
    .han-grid { grid-template-columns: repeat(2, 1fr); }
    .han-main-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .han-grid { grid-template-columns: 1fr; }
    .han-card { padding: 40px 30px; }
}
/*End Collaboration With Us */



/*Start Why Partner With Us */
:root {
    --han-primary-blue: #1d4ed8;
    --han-dark: #1a1a1a;
    --han-gray-text: #4b5563;
    --han-font-main: 'Bricolage Grotesque', sans-serif;
}

.han-expertise {
    padding: 40px 20px;
    background: #ffffff;
    font-family: var(--han-font-main);
    overflow: hidden;
}

.han-expertise-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Tag/Label */
.han-expertise-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--han-primary-blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.han-expertise-tag svg { width: 14px; height: 14px; }

/* Typography */
.han-expertise-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--han-dark);
    margin-bottom: 30px;
}

/* Custom Bullet List */
.han-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.han-expertise-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--han-gray-text);
    display: flex;
    align-items: center;
}

.han-expertise-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--han-dark);
    font-weight: bold;
}

/* Button with Gradient & Arrow */
.han-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #2b459a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.han-btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Image Styling */
.han-expertise-image-wrapper {
    position: relative;
    text-align: -webkit-right;
}

.han-expertise-img {
    width: 550px;
    /* height: auto; */
    border-radius: 24px;
    display: block;
    object-fit: cover;
    max-height: 700px;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .han-expertise-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    .han-expertise-title {
        font-size: 36px;
    }
    .han-expertise-image-wrapper {
        order: -1; /* Image on top for mobile */
    }
}
/*End Why Partner With Us */
