.elementor-1998 .elementor-element.elementor-element-b0c3bf1{--display:flex;--position:fixed;--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;top:0px;}body:not(.rtl) .elementor-1998 .elementor-element.elementor-element-b0c3bf1{left:0px;}body.rtl .elementor-1998 .elementor-element.elementor-element-b0c3bf1{right:0px;}.elementor-1998 .elementor-element.elementor-element-d8f1472{--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;}body.elementor-page-1998:not(.elementor-motion-effects-element-type-background), body.elementor-page-1998 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FAF9F5;}/* Start custom CSS for container, class: .elementor-element-b0c3bf1 *//* =========================
   GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

html,body{
width:100%;
max-width:100%;
overflow-x:hidden;
}

/* =========================
   COLORS
========================= */

:root{
--mehroon:#4b0f0f;
--gold:#f5d27a;
--white:#ffffff;
}

/* =========================
   TOP UTILITY BAR
========================= */

.top-utility-bar{
background:var(--mehroon);
color:var(--gold);
display:flex;
align-items:center;
justify-content:space-between;
padding:8px 20px;
font-size:13px;
position:sticky;
top:0;
z-index:10000;
width:100%;
}

.utility-right{
display:flex;
gap:10px;
}

.util-btn{
padding:6px 14px;
text-decoration:none;
font-size:13px;
border-radius:6px;
}

.util-btn.outline{
border:1px solid var(--gold);
color:var(--gold);
}

.util-btn.solid{
background:var(--gold);
color:#000;
}

/* =========================
   PROBLEM SCROLLER
========================= */

.problem-scroller{
background:var(--mehroon);
overflow:hidden;
position:sticky;
top:40px;
z-index:9999;
width:100%;
}

.problem-track{
display:flex;
gap:30px;
white-space:nowrap;
padding-left:100%;
animation:scroll 40s linear infinite;
}

.problem-track span{
color:var(--gold);
font-size:13px;
}

@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-100%);}
}

/* =========================
   HEADER
========================= */

.main-header{
background:var(--mehroon);
position:sticky;
top:72px;
z-index:9999;
width:100%;
}

/* HEADER INNER */

.header-inner{
width:100%;
display:flex;
align-items:center;
gap:30px;
padding:14px 20px;
}

/* =========================
   LOGO
========================= */

.logo img{
height:44px;
}

/* =========================
   MENU DESKTOP
========================= */

.main-menu{
display:flex;
gap:26px;
white-space:nowrap;
}

.main-menu a{
color:var(--gold);
text-decoration:none;
font-size:15px;
font-weight:700;
letter-spacing:0.3px;
transition:0.3s;
}

.main-menu a:hover{
color:var(--white);
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width:900px){

.header-inner{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.logo img{
height:38px;
}

/* scroll navigation */

.main-menu{
overflow-x:auto;
width:100%;
gap:20px;
scrollbar-width:none;
}

.main-menu::-webkit-scrollbar{
display:none;
}

.main-menu a{
flex:0 0 auto;
padding-right:18px;
font-size:15px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d6eceb0 *//* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

/* ================= TOP BAR ================= */
.top-bar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:40px;
  background:#800000;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 15px;
  z-index:1000;
  border-bottom:2px solid #FFD700;
}

.highlight{
  cursor:pointer;
  transition:0.3s ease;
}

.highlight:hover{
  color:#FFD700;
  text-shadow:0 0 8px rgba(255,215,0,0.8);
}

/* ================= SCROLL BAR ================= */
.problem-bar{
  position:fixed;
  top:40px;
  left:0;
  width:100%;
  height:45px;
  background:#5a0000;
  display:flex;
  align-items:center;
  overflow:hidden;
  z-index:999;
  border-bottom:3px solid #FFD700;
}

/* SCROLL */
.scroll-track{
  display:flex;
  width:max-content;
  animation:scroll 55s linear infinite;
}

.scroll-text{
  color:#FFD700;
  padding:0 40px;
  white-space:nowrap;
  font-size:14px;
  text-shadow:0 0 6px rgba(255,215,0,0.6);
}

@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:85px;
  left:0;
  width:100%;
  background:#FFD700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  z-index:998;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* LOGO LEFT */
.logo{
  flex:0 0 auto;
}

.logo img{
  height:60px;
  mix-blend-mode:multiply;
}

/* MENU DESKTOP */
.nav-menu{
  display:flex;
  gap:20px;
  margin-left:auto;
}

.nav-menu a{
  text-decoration:none;
  color:#800000;
  font-weight:600;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#000;
}

/* BURGER (HIDDEN DESKTOP) */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  /* NAVBAR FIX */
  .navbar{
    flex-direction:row;
    align-items:center;
  }

  /* LOGO LEFT */
  .logo{
    margin-right:auto;
  }

  /* BURGER RIGHT */
  .menu-toggle{
    display:block;
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#800000;
    font-size:26px;
    cursor:pointer;
    z-index:1001;
  }

  /* MOBILE MENU */
  .nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    left:auto;
    width:75%;
    height:100%;
    background:#800000;
    flex-direction:column;
    padding:80px 20px;
    gap:15px;
    transition:0.4s ease;
    z-index:2000;
    overflow-y:auto;
  }

  /* OPEN FROM RIGHT */
  .nav-menu.active{
    right:0;
  }

  /* LINKS */
  .nav-menu a{
    color:#FFD700;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  .nav-menu a:hover{
    color:#fff;
  }

  /* SCROLL SPEED */
  .scroll-track{
    animation-duration:65s;
  }
}/* End custom CSS */