﻿/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* ========== FIXED HEADER ========== */

.hira-top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background: white;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}


.hira-logo-left,
.hira-logo-right {
    width: 50%;
    text-align: center;
}

    .hira-logo-left img{
        max-width: 180px; 
    }
    .hira-logo-right img {
        max-width: 130px;
    }
/* ========== MAIN IMAGES ========== */
.hira-container {
    display: flex;
    margin-top: 0;
    width: 100%;
    height: calc(100vh - 1px); 
}

.hira-box {
    width: 50%;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}


.hira-box1 {
    background-image: url('img/fortune.jpg');
}

.hira-box2 {
    background-image: url('img/com.jpg');
}


.hira-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: 0.4s;
}

.hira-box:hover::after {
    background: rgba(0, 0, 0, 0.4);
}


.hira-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    background: orange;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    z-index: 10;
    transition: 0.3s;
}

    .hira-btn:hover {
        background: #ff6600;
    }


/*++++++++++++++++++++++++ footer ++++++++++++++++++++*/
/* ================= FOOTER ================= */
.hira-footer {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 17px 40px;
    background: white;
    position: relative;
    font-size: 17px;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    border-top: 1px solid #ddd;
}

.hira-footer-left,
.hira-footer-right {
    width: 50%;
}

.hira-footer-left {
    text-align: left;
    color: #000;
}

.hira-footer-right {
    text-align: right;
    color: #000;
}

    .hira-footer-right a {
        text-decoration: none;
        color: #0a73e8;
        /*font-weight: 500;*/
    }

        .hira-footer-right a:hover {
            text-decoration: none;
            color: #7A7A7A;
        }
