/*
========================================
Main Container & Scoped Styles
========================================
*/
.custom-hr-section-container {
    /* CSS variables are now defined here to be self-contained */
    --custom-dark-blue: #2c3e50;
    --custom-medium-gray: #35393c;
    --custom-accent-orange: #f3a683;
    --custom-accent-teal: #4db6ac;

    /* Background effects are now applied directly to this container */
    font-family: "Figtree",Arial,Helvetica,sans-serif;
    margin: 0 auto;
    padding: 100px 0px;
    position: relative; /* Essential for positioning pseudo-elements */
    z-index: 1;
    overflow: hidden; /* Prevents background elements from spilling out */
}
/* Dotted object animated */
.custom-hr-section-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 80px;
    width: 217px;
    height: 217px;
    background-image: url('../wp-content/uploads/2025/08/shape14.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    animation: spin 30s linear infinite; 
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 576px) {
    .custom-left-column h1 {
        font-size: 38px;
    }
    .custom-hr-section-container {
        padding: 40px 20px;
    }
    .custom-card-column:nth-child(2) {
        margin-top: 30px;
    }
}
/*
========================================
Main Layout
========================================
*/
.custom-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}
/*
========================================
Left Column (Text Content)
========================================
*/
.custom-left-column {
    padding-top: 10vh;
}
.custom-left-column h1 {
    font-size: 48px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--custom-dark-blue);
    line-height: 1.2;
}
.custom-left-column .custom-subheading {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--custom-dark-blue);
    font-weight: 500;
}
.custom-left-column .custom-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 5px;
    color: var(--custom-medium-gray);
}
.custom-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.custom-services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    font-size: 16px;
    font-weight: 500;
    color: var(--custom-dark-blue);
}
.custom-checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--custom-accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--custom-accent-teal);
    font-weight: bold;
    flex-shrink: 0;
}
.custom-explore-button {
    background-color: transparent;
    border: 2px solid var(--custom-accent-teal);
    color: var(--custom-accent-teal);
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}
.custom-explore-button:hover {
    background-color: var(--custom-accent-teal);
    color: white;
}
/*
========================================
Right Column (Service Cards)
========================================
*/
.custom-right-column-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}
.custom-card-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.custom-card-column:nth-child(2) {
    margin-top: 100px;
}
.custom-service-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}
.custom-service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.custom-card-content {
    padding: 30px;
}
.custom-card-content h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--custom-dark-blue);
    font-weight: 700;
    line-height: 1.3;
}
.custom-read-more {
    text-decoration: none;
    color: var(--custom-medium-gray);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.custom-read-more:hover {
    color: var(--custom-dark-blue);
}
.custom-read-more-icon {
    margin-left: 10px;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.custom-read-more:hover .custom-read-more-icon {
     border-color: var(--custom-dark-blue);
}
/* Animated Paper Airplane Decoration */
@keyframes float-up-down {
    0% {
        transform: translateY(0) rotate(10deg);
    }
    100% {
        transform: translateY(-15px) rotate(10deg);
    }
}
.custom-right-column-wrapper {
    position: relative;
}
.custom-right-column-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -13px;
    width: 180px;
    height: 70px;
    background-image: url('../wp-content/uploads/2025/08/shape13.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
    animation: float-up-down 3s ease-in-out infinite alternate;
}
@media (max-width: 992px) {
    .custom-right-column-wrapper::before {
        display: none;
    }
}
/*
========================================
Responsive Design Service Cards
========================================
*/
/* Responsive Design for Tablets and Mobile */
@media (max-width: 992px) {
    .custom-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .custom-left-column {
        padding-top: 0;
        text-align: center;
    }
    .custom-services-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto 40px auto;
    }
    .custom-right-column-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .custom-card-column {
        gap: 30px;
    }
    .custom-card-column:nth-child(2) {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .custom-right-column-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .custom-left-column h1 {
        font-size: 38px;
    }
    .custom-hr-section-container {
        padding: 40px 20px;
    }
}
.ed-wc5-sec .ed-wc5-shape {
    top: -70px !important;
    right: 80px !important;
    left: auto !important;
}
.ed-wc5-count {display: none !important;visibility: hidden !important;}