.elementor-2850 .elementor-element.elementor-element-901870d{--display:flex;--min-height:394px;}.elementor-2850 .elementor-element.elementor-element-85a5431{width:100%;max-width:100%;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_photography_header{height:600px;justify-content:flex-start;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_container_text_box{background-color:rgba(0, 0, 0, 0.55);padding:50px 50px 50px 50px;width:50%;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_title{color:#ffffff;margin-top:0px;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_subtitle{color:#ffffff;margin-top:10px;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_text{color:#ffffff;margin-top:10px;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_btn{border-color:#ffffff;color:#ffffff;padding:10px 30px 10px 30px;border-width:1px;margin-top:50px;border-radius:50px;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_btn:hover{border-color:#ffffff;color:#000000;background-color:#ffffff;}.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_tp_hero_img{width:100px;height:100px;object-fit:contain;}.elementor-2850 .elementor-element.elementor-element-802b33f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2850 .elementor-element.elementor-element-db32f34{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2850 .elementor-element.elementor-element-33d7312{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-2850 .elementor-element.elementor-element-802b33f{--content-width:1222px;}}@media(max-width:1024px){.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_container_text_box{width:50%;}}@media(max-width:767px){.elementor-2850 .elementor-element.elementor-element-85a5431 .uc_container_text_box{width:100%;}}/* Start custom CSS for html, class: .elementor-element-60d2751 *//* Basic body styling for the demo */
        .body-div {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f0f2f5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            box-sizing: border-box;
            line-height: 1.6;
            color: #333;
        }

        /* --- 1. Horizontal Layout Styles --- */
        .card-section {
            width: 100%;
            max-width: 1200px;
            padding: 20px 0;
            direction: rtl;
            margin-bottom: 150px
        }

        .section-title {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            font-size: 2.5em;
        }

        .section-subtitle{
            text-align: center;
            color: #0000008A;
            margin-bottom: 15px;
            font-size: 1.25em;
        }

        .card-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            padding: 0 15px;
        }

        /* --- 2. Card Style --- */
        .reveal-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            flex-basis: 320px;
            flex-grow: 1;
            flex-shrink: 1;
            max-width: 400px;
            position: relative; /* Crucial for positioning the overlay */
        }

        .reveal-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        /* --- MODIFIED: Image Overlay Styles --- */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1; /* MODIFIED: Visible by default */
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none; /* Allows click to pass through to the card */
        }
        
        /* NEW rule to hide the overlay when it has the .hidden class */
        .image-overlay.hidden {
            opacity: 0;
        }

        .overlay-text {
            color: #fff;
            font-size: 1.5em;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        /* --- 3. Card Content Styles --- */
        .reveal-card img {
            width: 100%;
            height: 350px;
            display: block;
            position: relative;
            z-index: 0;
        }

        .content-area {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            padding: 0 20px;
            transition: max-height 0.5s ease-out, opacity 0.4s ease-out, padding 0.5s ease-out;
            z-index: 2;
            position: relative;
        }

        .content-area.show {
            max-height: 500px;
            opacity: 1;
            padding: 20px;
        }

        .content-area h2 {
            margin-top: 0;
            color: #333;
        }

        .content-area p {
            color: #666;
            line-height: 1.6;
        }

        .small{
            font-size: 20px;
        }/* End custom CSS */