/* ------------------------------
   WHY CHOOSE US - CLEAN CARD STYLE
--------------------------------*/
.et_pb_section_3 {
    padding: 70px 0;
    background: #f9fafc;
    text-align: center;
}

/* Section Heading */
.et_pb_section_3 .et_pb_text_0 p {
    font-size: 32px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blue Divider Line */
.et_pb_section_3 .et_pb_divider_0 .et_pb_divider_internal {
    width: 70px;
    height: 3px;
    background: #0073e6;
    margin: 0 auto 40px auto;
    border-radius: 3px;
}

/* Row layout */
.et_pb_row_4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Columns */
.et_pb_section_3 .et_pb_column {
    flex: 1 1 calc(33.333% - 25px);
    max-width: calc(33.333% - 25px);
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .et_pb_section_3 .et_pb_column {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .et_pb_section_3 .et_pb_column {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Individual Card */
.et_pb_blurb {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 55%;
}

.et_pb_blurb:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Image Styling - Smaller & Centered */
.et_pb_blurb .et_pb_main_blurb_image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: block;
    transition: all 0.3s ease;
}

.et_pb_blurb:hover .et_pb_main_blurb_image img {
    transform: scale(1.05);
}

/* Heading Centered */
.et_pb_blurb h4.et_pb_module_header {
    font-size: 18px;
    font-weight: 600;
    color: #0c2142;
    text-align: center;
    margin-top: 10px;
    text-transform: capitalize;
}

/* Subtle Animation */
.et_pb_animation_top.et-animated {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*hero slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-slider .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-slider h2 {
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-slider p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-slider .btn {
    background-color: #0073e6;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.hero-slider .btn:hover {
    background-color: #005bb5;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .hero-slider h2 {
        font-size: 32px;
    }

    .hero-slider p {
        font-size: 16px;
    }
}