/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
:root {
    --bg-main-dark: #0056bd;
    /* --bg-main-dark-2: #E63946; */
    --bg-main-dark-2: #DD303E;
    --bg-main-light: white;
    --text-dark: #10171f;
}
html{
    height: 100%;
}
a{
    text-decoration: none !important;
    color: var(--bg-main-dark);

}
/* Base hidden state */
.fade-up,
.fade-down,
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 1.2s ease;
    will-change: transform, opacity;
}

/* Fade Up (comes from bottom → up) */
.fade-up {
    transform: translateY(40px);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down (comes from top → down) */
.fade-down {
    transform: translateY(-40px);
}
.fade-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left (comes from right → left) */
.fade-left {
    transform: translateX(40px);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right (comes from left → right) */
.fade-right {
    transform: translateX(-40px);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}
 .loader-img {
    background-image: linear-gradient(
          90deg,
          #ccc 0px,
          rgb(229 229 229 / 90%) 40px,
          #ccc 80px
      );
    background-size: 300%;
    background-position: center;
    animation: shimmer 1.5s infinite;
  }
 @keyframes shimmer {
    to {
      background-position: -100% 0;
    }
  }

body{
    font-family: 'Poppins', sans-serif;
    color: #223645;
    overflow-x: hidden;
    margin: 0px;
}
h1, h2, h3, h4, h5, h6 {
    color: #1c1c24;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    margin-bottom: 0;
    margin-top: 10px;
    line-height: 1.3;
    font-weight: 600;
    -webkit-transition: .5s;
    transition: .5s;
}
.breadcrumbs__section {
    direction: ltr;
    text-align: left;
    /* margin-top: 5px; */
    background: #f2f2f2;
    /* background: #dfdfdf; */
    padding: 15px;
    overflow-x: auto;
}
 .breadcrumbs__section::-webkit-scrollbar {
    width: 5px;
    height: 2px;
    }
    .breadcrumbs__section::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px #5f5d5d;
    background: #fdf9f3;
    }
    .breadcrumbs__section::-webkit-scrollbar-thumb {
    background: #fdf9f3;

    }

.breadcrumbs__section ul {
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
}


.breadcrumbs__section ul li {
    margin: 0px 15px 0px 0px;
}

.breadcrumbs__section ul li span {
    margin-left: 10px;
}

.breadcrumbs__section ul li a {
    display: block;
    color: rgb(0, 0, 0);
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
}

.breadcrumbs__section ul li a:hover {
    text-decoration: none;
}
.theme-h2{
    border-bottom: 2px solid #e63946;
    width: fit-content;
    margin: 0px auto;
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
}

.dreamit-button a{
  display: inline-block;
  border: 1px solid var(--bg-main-dark-2);
  border-radius: 4px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  cursor: pointer;
  color: var(--bg-main-dark-2);
  z-index: 1;
  padding: 6px;
  min-width: 120px;
}

.dreamit-button a:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.dreamit-button a:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--bg-main-dark-2);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.dreamit-button a:hover {
  color: #ffffff;
  border: 1px solid var(--bg-main-dark-2);
}

.dreamit-button a:hover:before {
  top: -35%;
  background-color: var(--bg-main-dark-2);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.dreamit-button a:hover:after {
  top: -45%;
  background-color: var(--bg-main-dark-2);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

    .theme-btn-2{
        background: #e639461c;
        padding: 7px 12px;
        transition: 0.3s;
        display: block;
        width: fit-content;
        margin: 0px 10px 10px 10px;
        color: var(--bg-main-dark-2);
        border-radius: 5px;
    }
     .theme-btn-2:hover{
        background: var(--bg-main-dark-2);
        color: white;
    }
    .em_bar_bg {
    height: 5px;
    width: 90px;
    background: #aec6ef;
    margin: 20px auto;
    position: relative;
    border-radius: 30px;
}
.text-left .em_bar_bg {
    height: 5px;
    width: 90px;
    background: #aec6ef;
    margin: 22px 0 30px;
    position: relative;
    border-radius: 30px;
}
.em_bar_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--bg-main-dark);
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}
.text-left1.em_bar_bg {
    height: 3px;
    width: 90px;
    background: #aec6ef;
    margin: 16px 0 8px;
    position: relative;
    border-radius: 30px;
}
.text-left1.em_bar_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background: var(--bg-main-dark);
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}
@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
            transform: translateX(88px);
  }
}

@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
            transform: translateX(88px);
  }
}



/* Backdrop Blur */
.mfp-container {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

/* Fade effect for background */
.mfp-with-fade.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mfp-with-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
.mfp-with-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* Fade + scale for content */
.mfp-with-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}
.mfp-with-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}
.mfp-with-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.95);
}
.mfp-arrow{
    -webkit-transform: unset !important;
}
.pagination{
    justify-content: center !important;
}
.page-link{
    color: var(--bg-main-dark-2);
}
.page-link:hover{
    color: var(--bg-main-dark-2);
    background-color: #ffdfe2;
}
.page-item.active .page-link{
    background-color: var(--bg-main-dark-2);
    color: white;
    border-color: var(--bg-main-dark-2);
}
.page-link:focus{
    box-shadow: none !important;
}
.page-link{
    background: #fce9eb;
    margin: 0px 2px !important;
    border: none;
    min-width: 35px;
    text-align: center;
}
.page-item.disabled .page-link{
    display: none;
    background-color: #e7e7e7;
}
.dreamit-section-title span {
    color: var(--bg-main-dark);
}
@media(max-width: 1199px){
    .breadcrumbs__section ul li a{
        color: black !important;
    }
}
@media(max-width: 1080px){
    .mh-60-1080{
        min-height: 66vh;
    }
}
@media(max-width: 992px){
    .dreamit-section-title h2 {
        font-size: 26px !important;
    }
}

 @font-face {
        font-family: 'Al-Qalam';
        src: url("../webfonts/AlQalamQuranMajeedWeb2_D.otf");
        font-display:swap
}
@font-face {
        font-family: 'Al-Mushaf';
        src: url("../webfonts/Al_Mushaf.ttf");
        font-display:swap
}

