.image-header {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    overflow: hidden;
}

/* Apply floating and hover animation to image-wrapper image */
.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: genz-ally-float 8s ease-in-out infinite;
}

/* Hover effect like genz-ally-image-container */
.image-wrapper img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(44, 90, 160, 0.3);
}

/* Reuse same float animation */
@keyframes genz-ally-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Blue angled background layer */
.image-header .bg-layer {
    position: absolute;
    inset: 0;
    background-color: #0b1633;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
    z-index: 1;
}

/* Content */
.image-header .content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

.image-header,
.content-section {
    background: #fff;
}

.image-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;

}

.genz-header-titles {
    color: #142b63;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 2rem !important;
    background: linear-gradient(135deg, #142b63, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

li {
    padding: 5px 0;
}

/* Image */
.image-header .image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.image-header .image-wrapper img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.star-icon i {
    color: #f2b01e;
}

.testimonial-box {
    position: relative;
    background: #f8f9fc;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.testimonial-text {
    position: relative;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    z-index: 1;
    padding: 1rem 2rem;
}

/* Opening Quote “ */
.testimonial-text::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 70px;
    color: rgba(20, 43, 99, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Closing Quote ” */
.testimonial-text::after {
    content: "”";
    position: absolute;
    bottom: -40px;
    right: 10px;
    font-size: 70px;
    color: rgba(20, 43, 99, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Star Rating */
.star-icon {
    margin-top: 1.2rem;
    color: #f8b82f;
    font-size: 20px;
}

.manager-name {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    color: #142b63;
}

.maintaence-first-image {
    width: 450px;
    height: 350px;
}

h2.underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 32px;
    font-weight: 700;

}

/* Short horizontal line */
h2.underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    /* length of the line */
    height: 3px;
    /* thickness */
    background-color: #f8b82f;
    /* golden-yellow line */
    border-radius: 2px;
}

/* Table container */
.content-table {
    width: 100%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Table structure */
.content-table table {
    width: 100%;
    border-collapse: separate;
    /* allows spacing between rows */
    border-spacing: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/* Table header */
.content-table thead {
    background: #0b1633;
    color: #fff;
}

.content-table th {
    padding: 16px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid #f8b82f;
}

/* Table body rows */
.content-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #333;
    vertical-align: top;
}

/* Zebra striping for readability */
.content-table tbody tr:nth-child(even) {
    background-color: #f8f9fc;
}

/* Hover effect */
.content-table tbody tr:hover {
    background-color: #eef3ff;
    transition: background-color 0.3s ease;
}

/* Optional: rounded bottom corners */
.content-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.content-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}


/* Responsive */
@media screen and (max-width: 992px) {
    .image-header {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .image-header .bg-layer {
        clip-path: none;
        /* Remove angle for small screens */
    }

    .image-header .content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .image-header .image-wrapper {
        justify-content: center;
    }

    .image-header h2 {
        font-size: 26px;
    }

    .image-header .underline {
        margin: 0 auto;
    }

    .image-header .image-wrapper img {
        max-width: 100%;
    }
}