@font-face {
    font-family: 'NotoSans';
    src: url('../fonts/NotoSans.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ZaridOfficeItalic';
    src: url('../fonts/29LTZaridOffice-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ZarRegular';
    src: url('../fonts/29LTZaridOffice-Regular.otf') format('opentype');
    font-weight: normal ;
    font-style: normal;
}
@font-face {
    font-family: 'ZarBold';
    src: url('../fonts/29LTZaridOffice-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} 
html, body {
  scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4D1254;
    text-align: left;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
  }
  p, span {
    font-family: "NotoSans", sans-serif;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: #4D1254;
    text-align: left;
    margin: 0;
  }
  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: .5rem;
    font-family: "ZarRegular", serif;
    font-weight: 500 ;
    line-height: 1.2;
    color: #4D1254;
}
.newsLetterButton{
    width:30px !important;
    background-color:white !important;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 90px;
    height: 100vh;
    z-index: 1000;
    padding-top: 2rem;
    background-color: #fff;
    transition: width 0.5s ease;
}
    
      .sidebar-logo {
          height: 50px;
          transform: translateX(60px);
          transition: clip-path 0.2s ease;
          clip-path: inset(0 70% 0 0); /* Default clipped */
        }
        
        .sidebar-logo.logo-visible {
          clip-path: inset(0 0 0 0); /* Fully visible */
        }
        .icon-search:before {
          content: "\e901";
      }
    .alt-content-wrapper {
      position: absolute;
      top: 0;
      left: 90px;
      width: calc(100% - 90px);
      height: 100%;
      transition: transform 0.5s ease;
    }

    .page-content{
      position: absolute;
      top: 0;
      left: 90px;
      width: calc(100% - 90px);
      padding-top: 60px;
      height: 100%;
      transition: transform 0.5s ease;
    }


    .page-content {
      z-index: 10;
    }
    
    .alt-content-wrapper {
      z-index: 13;
      transform: translateX(100%);
    }
    
    .alt-active .page-content {
      transform: translateX(-100%);
    }
    
    .alt-active .alt-content-wrapper {
      transform: translateX(0);
    }


    /* sidebar sub links */
    .mega-menu {
      display: flex;
      flex-direction: row;
      height: 100vh;
      background: #fff;
      color: #42145f;
      position: relative;
    }
    
    .mega-menu-left {
      width: fit-content;
      padding: 0px 20px;
      display: flex;
      flex-direction: column;
      justify-content: start;
      padding-top: 170px;
    }
  .sub-menu {
    display: none;
  }

  .sub-menu.active {
    display: block;
  }

  .subsection {
    display: none;
  }

  .subsection.active {
    display: block;
  }
    .main-menu {
      width: fit-content;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-menu li {
      font-family: "zarRegular", sans-serif;
      font-weight: 550 !important;
      font-size: clamp(20px, 5vw, 36px);
      margin-bottom: 32px;
      width: fit-content;
      cursor: pointer;
      padding-left: 0.5rem;
      line-height: 40px;
      border-left: 2px solid transparent;
      transition: border .2s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .main-menu li a{
      font-size: clamp(24px, 2.5vw, 36px);

      color: #4D1254;
      text-decoration:  none;
    }
    .main-menu li:hover {
      border-left: 2px solid #4D1254;
    }
    .sidebar-sub-active{
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 40px;
      border-left: 2px solid #4D1254 !important;
    }
    .active-link{
      border-left: 2px solid #4D1254 !important;
    }
    .sub-menu {
      font-family: "zarRegular", sans-serif;
      font-weight: 250 !important;
      list-style: none;
      margin: 0;
      padding: 0;
      width: fit-content;
      cursor: pointer;
      line-height: 40px;
    }
    
    .sub-menu li {
      width: 320px;
      display: flex;
      justify-content: space-between;
      font-size: clamp(14px, 2.2vw, 21px);
      margin-bottom: 2rem;
    }  
  
    
    .sub-menu a {
      padding-left: 0.5rem;
      color: #42145f;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;border-left: 2px solid transparent;
      transition: border .2s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .sub-menu a:hover {
      border-left: 2px solid #4D1254;
    }
    .sub-menu .arrow {
      padding-left: 0.5rem;
      border-left: 2px solid transparent;
      display: flex;
      align-items: center;
      transition: border 0.2s ease;
    }
    
    .sub-menu .arrow.active {
      border-left: 2px solid #4D1254;
    }
    .sub-menu img {
      width: 16px;
      height: 15.35px;
    }
    .mega-menu-right {
      flex: 1;
      background: #f9f9f9;
      padding: 0px 40px;
      padding-top: 170px;
    }
    
    .mega-menu-right h4 {
      width: fit-content;
      font-size: 18px;
      font-family: "zarRegular", sans-serif; 
      line-height: 1.25rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 40px;
      font-size: 1.125rem;
      padding-left: 0.5rem;
      border-left: 2px solid #4D1254;
      margin-bottom: 32px;
      font-weight: bold;
    }
    
    .mega-menu-right ul {
      list-style: none;
      padding: 0;
    }
    
    .mega-menu-right li {
      padding-left: 8px;
      margin-bottom: 15px;
      border-left: 2px solid transparent;
      transition: border .2s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .mega-menu-right li:hover{
      border-left: 2px solid #4D1254;
    }
    .mega-menu-right a {
      text-decoration: none;
      color: #42145f;
      font-size: 12px;
    }

.mega-menu-footer {
    position: absolute;
    bottom: 20px;
    left: 430px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
    
    .mega-menu-footer a img {
      transition: transform 0.3s ease;
      width: 21px;
      height: 21.6px;
    }
    .mega-menu-footer a:hover img {
      transform: scale(1.2);
    }

    .rounded-0{
      padding: 0;

    }
    .nav-item a img{
      transition: all 0.4s;
    }
    .nav-item a:hover img{
      transform: scale(1.1);
    }
    .nav-item-footer{
      margin: 0;
      margin-top: auto;
      margin-bottom: 16px;
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
    }
    .nav-item-footer a img{
      width: 15.6px;
      height: 15.6px;
      transition: all 0.4s;
      opacity: 0.25;
    }
    .nav-item-footer a:hover img{
      transform: scale(1.3);
    }
    .lang-active{
      opacity: 100 !important;
    }
  /* Hamburger Button */
  .hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.15s linear;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  
  .hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 30px;
    height: 4px;
    background-color: #4e1254;
    position: absolute;
    transition: all 0.3s ease;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
    background-color: #4e1254;
    width: 30px;
    height: 4px;
    position: absolute;
    transition: all 0.3s ease;
  }
  
  .hamburger-inner::before {
    top: -10px;
  }
  
  .hamburger-inner::after {
    bottom: -10px;
  }
  
  /* Active hamburger turns into arrow */
  .hamburger.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translateX(-6px);
    width: 20px;
  }
  
  .hamburger.is-active .hamburger-inner::after {
    opacity: 1;
    transform: rotate(45deg) translateX(-6px);
    width: 20px;
  }
  



  /* footer style */
  .footer-container{
    background-color: #470b50;
    padding-bottom: 0px;
    padding-top: 20px;
    max-width: 1140px;
    margin: 0;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding: 32px 16px;
  }
  .footer {
    margin-top: 96px;
    background-color: #470b50;
    color: white;
    padding: 0px 60px;
    font-family: "NotoSans", sans-serif;
  }
  
  .footer-top {
    display: flex;
    gap: 80px;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
  }
  
  .footer-section {
    padding: 10px 0px;
  }
  
  .footer-section h4 {
    font-family: "NotoSans", sans-serif;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .footer-section p {
    font-family: "NotoSans", sans-serif;
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 16px;
    cursor: pointer;
  }
  .footer-section ul li a{
    font-size: 14px;
    text-decoration: none;
    color: white;
    cursor: pointer;
  }
  
  .newsletter-input {
    display: flex;
    margin-top: 10px;
  }
  
  .newsletter-input input {
    height: 30px;
    width: 219px;
    padding: 8px;
    border: none;
  }
  
  .newsletter-input button {
    padding: 0px 12px;
    border: none;
    background-color: white;
    color: #470b50;
    cursor: pointer;
    font-size: 12px;
  }
  .newsletter-input button img{
    width: 12px;
  }
  
  .social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-top: 35px;
    margin-bottom: 15px;
  }
    .social-icons a:hover{
        transform:scale(1.5);
    }


    .footer-bottom {
        padding-top: 15px;
        border-top: 2px solid white;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.logo-section {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding-top: 20px;
}
  
  .logo-section img {
    height: 86px;
  }
  
  .address-section, .policy-section {
    display: flex;
    padding-top: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin: 10px;
  }
  .policy-section p {
    font-size: 12px;
    font-family: "NotoSans", sans-serif;
    color: white;
    font-size: 13px;
    line-height: 1.6;
  }
  .address-section h5{
    font-weight: 600;
    font-size: 12px;
    font-family: "NotoSans", sans-serif;
    color: white;
  }
  .address-section p{
    font-size: 12px;
    font-family: "NotoSans", sans-serif;
    color: white;
  }


  /* header on phone */

/* === Mobile Nav Styles (Scoped) === */
.mobileNav-header {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background: white;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10000;
  box-shadow: 0px 0px 12px 0px #42145f71;
  padding: 0px 10px;
}

.mobileNav-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #42145f;
}
.mobileNav-logo img{
  width: 200px;
}

.mobileNav-hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #42145f;
  cursor: pointer;
}

.mobileNav-overlay {
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: white;
  overflow: hidden;
  z-index: 9999;
  transform: translateX(100%);
  transition:  0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.mobileNav-overlay.active {
  transform: translateX(0);
}

.mobileNav-panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: white;
  padding: 1rem;
  box-sizing: border-box;        
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565,1);
  overflow-y: auto;
}

.mobileNav-panel.active {
  right: 0;
}

.mobileNav-panel ul {
  list-style: none;
  padding: 0;
}

.mobileNav-panel ul li {
  margin-bottom: 14px;
  font-family: "zarRegular", sans-serif; 
  padding: 12px 0;
  font-size: 1.1rem;
  color: #42145f;
  cursor: pointer;
  padding-left: 10px;
}
.mobileNav-panel ul li a{
  font-family: "zarRegular", sans-serif; 
  color: #42145f;
  font-size: 1.1rem;
  text-decoration: none;
}
.mobileNav-panel h4 {
  font-family: "zarRegular", sans-serif; 
  color: #fff;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  font-size: 24px;
  padding: 10px;
  background-color: #42145f;
}

.mobileNav-back {
  background: none;
  border: none;
  font-size: 1rem;
  color: #42145f;
  margin-bottom: 1rem;
  cursor: pointer;
}
.mobileNav-panel ul li a img{
  width: 21px;
}
.mobileNav-header-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
}
.mobileNav-hamburger.close {
  font-size: 1.8rem;
  /* Optional: background, transition, etc. */
}
    .back-arrow {
        background-image: url(../Assets/images/arrow-back.svg);
        background-repeat: no-repeat;
        background-position: left center;
        padding-left: 16px;
        margin-bottom: 1rem;
    }
.svg-bottom svg, .svg-bottom {
    margin-top: -1px;
    vertical-align: top;
    padding: 0;
}
.svg-top svg, .svg-top {
  padding: 0;
    vertical-align: bottom;
    margin-bottom: -1px;
}
.lang-image{
  opacity: 30%;
  width: 20px;
}
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 2) !important;
}
.border-1{
  padding-left: 10px !important;
  border-left: 3px solid #004F59 !important;
}
.border-2{
  padding-left: 10px !important;
  border-left: 3px solid #2A2B7C !important;
}
.border-3{
  padding-left: 10px !important;
  border-left: 3px solid #42145f !important;
}
.border-4{
  padding-left: 10px !important;
  border-left: 3px solid #EA5658 !important;
}
#fcblock6 .row, #fc-block-8 .row {
    justify-content: start !important;
}
.card-neutral p {
    margin-bottom: 0px !important;
    width:100% !important;
    padding:0px !important;
}
.card.card-neutral:hover{
    box-shadow:none !important;
}
.padding-start-none{
    padding-left:0px !important;
}
    .padding-start-none .btn {
        background-color: #004F59;
        color:white
    }

.CurrentPageClass, .NumericClass, .pager-next-rev {
    position: relative;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #4D1254;
    background-color: #fff;
    border: 1px solid #4D1254;
}
.CurrentPageClass {
    background-color: #4D1254 !important;
    color: white !important;
}
.address-section a:hover , .footer-section a:hover{
    text-decoration:underline;
}
.card:nth-of-type(2) .card-bg-btn-1 {
    background-color: #2a2b7c !important;
}

.card:nth-of-type(2) .card-border-1 {
    border-bottom: 5px solid #2a2b7c !important;
}

.card:nth-of-type(4) .card-bg-btn-1 {
    background-color: #ea5658 !important;
}

.card:nth-of-type(4) .card-border-1 {
    border-bottom: 5px solid #ea5658 !important;
}

.card:nth-of-type(5) .card-bg-btn-1,
.card:nth-of-type(6) .card-bg-btn-1 {
    background-color: #4d1254 !important;
}

.card:nth-of-type(5) .card-border-1,
.card:nth-of-type(6) .card-border-1 {
    border-bottom: 5px solid #4d1254 !important;
}

    .card:nth-of-type(2) .card-bg-btn-1:hover, .card:nth-of-type(4) .card-bg-btn-1:hover, .card:nth-of-type(5) .card-bg-btn-1:hover,
    .card:nth-of-type(6) .card-bg-btn-1:hover {
        background-color: #4D1254 !important;
    }
.homepage3-container .card-content {
    min-height:213px;
}


#fc-block-2 .card{
    margin-bottom:0px !important;
}
.pager-next-rev {
    top: 14px;
    height: 40px;
    width: 36px;
}
.nav-sub-sticky ul{
    margin-left:15px;
}