.elementor-2495 .elementor-element.elementor-element-64dea34{--display:flex;}@media(min-width:768px){.elementor-2495 .elementor-element.elementor-element-64dea34{--content-width:1600px;}}/* Start custom CSS for container, class: .elementor-element-64dea34 *//* ==========================================
   ADEC KM - PREMIUM VISUAL SITEMAP
   ========================================== */
.sitemap-section {
    padding: 100px 0;
    background-color: #f9fbff; /* Soft grey-blue premium tint background */
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.sitemap-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Sitemap Header block */
.sitemap-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 65px auto;
}

.sitemap-header .sitemap-tag {
    display: inline-block;
    background-color: #eaf2ff;
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 999px;
    margin-bottom: 25px;
}

.sitemap-header h2 {
    font-size: 45px;
    line-height: 1.15;
    font-weight: 700;
    color: #051b4d;
    letter-spacing: -2px;
    margin: 0 0 18px 0;
}

.sitemap-header p {
    font-size: 17px;
    color: #667085;
    line-height: 1.6;
    margin: 0;
}

/* Sitemap Grid (4 Columns) */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sitemap Cards styling */
.sitemap-card {
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

.sitemap-card:hover {
    transform: translateY(-6px);
    border-color: #0066cc;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.06);
}

/* Icon Header inside sitemap cards */
.sitemap-icon-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background-color: #eaf2ff;
    color: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.icon-circle svg {
    width: 26px;
    height: 26px;
}

/* Rotate & color fill on hover */
.sitemap-card:hover .icon-circle {
    transform: scale(1.06);
    background-color: #0066cc;
    color: #ffffff;
}

.sitemap-icon-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: #051b4d;
    margin: 0;
}

/* Sitemap Links List */
.sitemap-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sitemap-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667085;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
}

/* Tiny visual bullet arrows styling */
.bullet-arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    transform: rotate(-45deg);
    transition: border-color 0.2s ease;
    flex-shrink: 0;
    margin-top: -2px;
}

/* Link hover animation details */
.sitemap-links a:hover {
    color: #0066cc;
    transform: translateX(4px);
}

.sitemap-links a:hover .bullet-arrow {
    border-color: #0066cc;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
    .sitemap-container {
        padding: 0 30px;
    }
    .sitemap-header h2 {
        font-size: 38px;
    }
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sitemap-section {
        padding: 60px 0;
    }
    .sitemap-container {
        padding: 0 20px;
    }
    .sitemap-header h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .sitemap-header p {
        font-size: 15px;
    }
    .sitemap-grid {
        grid-template-columns: 1fr; /* 1 column stack on mobile screen sizes */
        gap: 20px;
    }
    .sitemap-card {
        padding: 30px 20px;
    }
}/* End custom CSS */