@import url("variables.css");
@import url("layout.css");
@import url("currency.css");
@import url("footer.css");
@import url("responsive.css");
@import url("converter.css");
@import url("history.css");



@font-face{
    font-family:"Rudaw";
    src:url("../fonts/Rudaw.ttf") format("truetype");
    font-display:swap;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-main);
    background:url("../images/bg-zone.jpg") center center/cover no-repeat fixed;
    color:var(--text);

    direction:rtl;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

button,
input{

    font-family:inherit;

}

.container{

     width:min(1250px,94%);

    margin:auto;

}

main{

    width:min(1500px,94%);

    margin:-45px auto 0;

    position:relative;

    z-index:10;

}

.main-card{
    background:var(--panel-bg);

    border-radius:var(--radius);

    padding:3px;

    box-shadow:var(--shadow-lg);

}

.page-title{

    text-align:center;

    margin-bottom:30px;

}

.page-title h1{

    color:var(--text-white);

    font-size:32px;

    margin-bottom:8px;

}

.page-title p{

    color:var(--text-light);

    font-size:15px;

}
.date-card{
    display:flex;
    flex-direction:column;
    gap:8px;
    
}

.date-top{
    font-size:20px;
    font-weight:bold;
    display:flex;
    align-items:center;
    gap:8px;
    min-width:180px;
    white-space:nowrap;
}
.date-bottom{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
}

#time{
    font-size:18px;
    direction:ltr;
    white-space:nowrap;margin: 0;
  margin-right: 50px;
    color:rgb(248,245,245);
}

#language{
    font-size:16px;
    
    padding:4px 8px;
    height:30px;
    border-radius:6px;
    cursor:pointer;
    margin:5px;
    color: rgba(6, 38, 79, 0.907);
}
#day{
    color: rgb(248, 245, 245);
}
#date{
    color: rgba(6, 38, 79, 0.907);
}
.date-top{
    display:flex;
    align-items:center;
}

#day{
    display:inline-block;
    width:120px;
}

#date{
    display:inline-block;
    width:100px;
}
@media(max-width:600px){

    #time{
        margin-right:1px !important;
    }
    

}
.logo-desktop{
    display:block;
}

.logo-mobile{
    display:none;
}


/* ==========================================
why choose us 
========================================== */
/* ==========================================
   WHY CHOOSE US
========================================== */

.why-choose-section {
    width: 100%;
    background: #fff;
    padding: 30px 20px 35px;
    box-sizing: border-box;
}


/* =========================
   HEADER
========================= */

.why-choose-header {
    text-align: center;
    margin-bottom: 28px;
}

.why-choose-header h2 {
    margin: 0;
    color:#011937;
    font-size: 21px;
    font-weight: 700;
}

.why-choose-header span {
    display: block;
    width: 210px;
    height: 2px;
    background: #e3b84f;
    margin: 8px auto 0;
}
/* Kurdish & Arabic */

html[lang="ckb"] .why-choose-header span,

html[lang="ar"] .why-choose-header span {

    width: 130px;

}

/* English */

html[lang="en"] .why-choose-header span {

    width: 210px;

}

/* =========================
   GRID
========================= */

.why-choose-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

    text-align: center;
}


/* =========================
   ITEM
========================= */

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================
   ICON
========================= */

.why-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e7e7e7;
    border-radius: 50%;

    background: #fff;

    color: #d9ad32;

    font-size: 25px;
    font-weight: 700;

    margin-bottom: 13px;

    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}


/* =========================
   TITLE
========================= */

.why-choose-item h3 {
    margin: 0 0 8px;

    color: #011937;

    font-size: 14px;
    font-weight: 700;
}


/* =========================
   DESCRIPTION
========================= */

.why-choose-item p {
    max-width: 210px;

    margin: 0;

    color: #666;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 25px 15px 30px;
    }

    .why-choose-header {
        margin-bottom: 22px;
    }

    .why-choose-header h2 {
        font-size: 18px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 15px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .why-choose-item h3 {
        font-size: 13px;
    }

    .why-choose-item p {
        font-size: 11px;
        line-height: 1.7;
    }

}