/* Lead partners grid 3x2 responsive (2025 update) */
.lead-partners-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  justify-items: center;
  align-items: center;
  margin-top: 24px;
}
.lead-partners-grid-3x2 img.partner-logo {
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .lead-partners-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .lead-partners-grid-3x2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;700&display=swap');
@import url(https://fonts.googleapis.com/css?family=Poppins:400,700|Lato:300,400,700&display=swap);
/* Font imports must be at the top for consistent loading across browsers */
/* Lead partners: 4 + 2 centered rows (cleaned 2025-08-18) */
.lead-partners-grid {
  display: flex;
  flex-direction: column;
  align-items: center; /* center the rows container */
  gap: 24px;          /* vertical space between the two rows */
  margin-top: 16px;
}

.lead-partners-row {
  display: flex;
  justify-content: center; /* center logos; gap controls spacing */
  align-items: center;
  gap: 75px;               /* horizontal spacing between logos */
  flex-wrap: nowrap;       /* keep target counts per row on wide screens */
}

/* Logo sizing */
.lead-partners-row img {
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Larger partner logos (overrides base img size) */
.lead-partners-row img.partner-logo-lg {
  max-width: 100px; /* was 160px */
}

/* Increase size of small partner logos */
.lead-partners-row img.partner-logo-sm {
  max-width: 220px;
}

@media (max-width: 768px) {
  .lead-partners-row img.partner-logo {
    max-width: 180px; /* was 140px */
  }
}

@media (max-width: 480px) {
  .lead-partners-row img.partner-logo {
    max-width: 150px; /* was 120px */
  }
}

/* Responsive: allow wrapping on small screens */
@media (max-width: 768px) {
  .lead-partners-row {
    flex-wrap: wrap;        /* let items wrap on narrow screens */
    gap: 16px;
  }
  .lead-partners-row img {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .lead-partners-row img {
    max-width: 120px;
  }
}
/* Ensure the three logos after Foyer remain larger at all breakpoints */
@media (max-width: 768px) {
  .lead-partners-row img.partner-logo-sm {
    max-width: 180px;
  }
}
@media (max-width: 480px) {
  .lead-partners-row img.partner-logo-sm {
    max-width: 150px;
  }
}
/*-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01.COMMON 
    02.HEADER
    03.BRAND
    04.SERVICES
    11.FOOTER

-----------------------------------------------------------------------------------*/
/*===========================
     01.COMMON css 
===========================*/

/* <!-- Bobby: Add ibmPlexSansMedium utility class for consistent font usage --> */
.ibmPlexSansMedium { font-family: 'IBM Plex Sans', sans-serif !important; font-weight: 500 !important; }
.center-text { text-align: center !important; }
.bold { font-weight: bold !important; }
.georgia { font-family: Georgia, serif !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-50 { padding-top: 50px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #6A6972;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: #F6DDDA;
  background-size: cover;
}


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; }

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline-block; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  color: #2E2E2E;
  margin: 0px; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }


p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #6A6972;
  margin: 0px; }

/* Typography fixes: force IBM Plex Sans on core copy blocks */
body p,
.text,
.header-hero-content,
.header-hero-content p,
.header-hero-content .text,
.single-services .services-content,
.single-services .services-content .text,
.become-sponsor,
.become-sponsor p,
.become-sponsor .text {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0;
}

/*===== All Button Style =====*/
  .main-btn {
  font-family: 'IBM Plex Sans', sans-serif;
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 25px;
  font-size: 16px;
  line-height: 48px;
  border-radius: 8px;
  border: 0;
  color: #333;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: #FFF;
  background-size: 200%; }
  .main-btn:hover {
    color: #fff;
    background:#333; }

/*===== All SECTION TITLE Style =====*/
/*===== All Section Title Style =====*/
.section-title .line {
  background: #333;
  width: 100%;
  height: 4px;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.section-title .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #361CC1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}
.section-title .title {
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  padding-top: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
  }
}
.section-title .title span {
  font-weight: 400;
  display: contents;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999; }
  .preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    .preloader .loader .ytp-spinner {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 64px;
      margin-left: -32px;
      z-index: 18;
      pointer-events: none; }
      .preloader .loader .ytp-spinner .ytp-spinner-container {
        pointer-events: none;
        position: absolute;
        width: 100%;
        padding-bottom: 100%;
        top: 50%;
        left: 50%;
        margin-top: -50%;
        margin-left: -50%;
        -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        animation: ytp-spinner-linspin 1568.23529647ms linear infinite; }
        .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
          position: absolute;
          width: 100%;
          height: 100%;
          -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
          .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            overflow: hidden;
            right: 50%; }
          .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            left: 50%; }
    .preloader .loader .ytp-spinner-circle {
      box-sizing: border-box;
      position: absolute;
      width: 200%;
      height: 100%;
      border-style: solid;
      /* Spinner Color */
      border-color: #361CC1 #361CC1 #E1E1E1;
      border-radius: 50%;
      border-width: 6px; }
    .preloader .loader .ytp-spinner-left .ytp-spinner-circle {
      left: 0;
      right: -100%;
      border-right-color: #E1E1E1;
      -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
    .preloader .loader .ytp-spinner-right .ytp-spinner-circle {
      left: -100%;
      right: 0;
      border-left-color: #E1E1E1;
      -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg); }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg); }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg); }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg); }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg); }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg); }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }

@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg); }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg); }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg); }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg); }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg); }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg); }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }

@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); } }

@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); } }

@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); } }

@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); } }

/*===========================
      02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgb(246 221 218 / 40%);
  box-shadow: none;
  -webkit-backdrop-filter: saturate(150%) blur(40px);
  backdrop-filter: saturate(150%) blur(40px);
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .sticky .navbar {
    padding: 10px 0; }

.navbar {
  padding: 25px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }

.navbar-brand {
  padding: 0; }
  

.navbar-toggler {
  padding: 0; }
  .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px; }
  .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0; }
  .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px; } }

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px; } }

.navbar-nav .nav-item {
  margin-right: 45px;
  position: relative; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
      margin-right: 30px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
      margin: 0; } }
  @media (max-width: 767px) {
    .navbar-nav .nav-item {
      margin: 0; } }
  .navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
    font-family: "Poppins", sans-serif; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #2E2E2E; } }
    @media (max-width: 767px) {
      .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #2E2E2E; } }
  .navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item:hover .sub-menu {
        top: 0; } }
    @media (max-width: 767px) {
      .navbar-nav .nav-item:hover .sub-menu {
        top: 0; } }
  .navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible; } }
    @media (max-width: 767px) {
      .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible; } }
    .navbar-nav .nav-item .sub-menu li {
      display: block; }
      .navbar-nav .nav-item .sub-menu li a {
        display: block;
        padding: 8px 20px;
        color: #2E2E2E; }
        .navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
          padding-left: 25px;
          color: #361CC1; }

.navbar-nav .sub-nav-toggler {
  display: none; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #2E2E2E;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px; } }
  @media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #2E2E2E;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px; } }
  .navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #2E2E2E;
    border-bottom: 1px solid #2E2E2E;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -5px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); } }

@media (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); } }

.navbar-btn .main-btn {
  height: 45px;
  line-height: 45px;
  background: #333;
  background-size: 200%;
  color:#FFF; }
  .navbar-btn .main-btn:hover {
    color: #333;
    border-bottom:2px solid #efefef;
    background:#fff !important;
    background-position: right center; }

.sticky .navbar-toggler .toggler-icon {
  background-color: #2E2E2E; }

.sticky .navbar-nav .nav-item a {
  color: #2E2E2E; }

.sticky .navbar-nav .nav-item.active > a, .sticky .navbar-nav .nav-item:hover > a {
  color: #361CC1; }

/*===== HEADER HERO =====*/
.header-hero {
  position: relative;
  z-index: 5;
  background-position: bottom center; }

#particles-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

.header-hero-content {
  padding-top: 0px; }
  @media (max-width: 767px) {
    .header-hero-content {
      padding-top: 0px; } }
  .header-hero-content .header-sub-title {
    font-size: 28px;
    font-weight: 300;
    color: #333; }
    @media (max-width: 767px) {
      .header-hero-content .header-sub-title {
        font-size: 24px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header-hero-content .header-sub-title {
        font-size: 30px; } }
  .header-hero-content .header-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff; }
    @media (max-width: 767px) {
      .header-hero-content .header-title {
        font-size: 24px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header-hero-content .header-title {
        font-size: 30px; } }
  .header-hero-content .text {
    color: #fff;
    margin-top: 30px; }
  .header-hero-content .main-btn {
    margin-top: 40px; }

.header-hero-image {
  padding-top: 45px; }
  .header-hero-image img {
    max-width: 760px;
    width: 100%; }
    @media (max-width: 767px) {
      .header-hero-image img {
        max-width: 100%; } }
  @media (max-width: 767px) {
    .header-hero-image {
      padding-top: 30px; } }


/*===========================
      04.SERVICES css 
===========================*/
.single-services {
  background: transparent;
  transition: all 0.3s ease-out 0s;
  padding: 20px 20px;
  border-radius: 15px;
  border:1px solid #333;
}
  @media (max-width: 767px) {
    .single-services {
      padding: 20px 20px 20px; } }
  .single-services .services-icon {
    display: inline-block;
    position: relative; }
    .single-services .services-icon img {
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s; }
    .single-services .services-icon .shape-1 {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .single-services .services-icon i {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 34px;
      color: #fff; }
    .single-services .services-content .services-title a {
    font-size: 26px;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #2E2E2E;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single-services .services-content .services-title a {
        font-size: 24px; } }
    @media (max-width: 767px) {
      .single-services .services-content .services-title a {
        font-size: 20px; } }
    .single-services .services-content .services-title a:hover {
      color: #e56c1f; }
  .single-services .services-content .text {
    margin-top: 30px; }
    @media (max-width: 767px) {
      .single-services .services-content .text {
        margin-top: 20px; } }
  .single-services .services-content .more {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #e56c1f;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .single-services .services-content .more i {
      margin-left: 10px; }
    .single-services .services-content .more:hover {
      color: #e56c1f; }

    .single-services .services-content .services-title span {font-family: 'IBM Plex Sans', sans-serif;}

    .single-services .services-content h4 {color: #333;}
  
/*===========================
       11.FOOTER  css 
===========================*/
.footer-area {
  background-position: top center;
  position: relative;
  z-index: 5;
  background: #F2D7D4;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-area::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/footer-bg.svg);
  background-position: top center;
  background: #F2D7D4;
  z-index: -1;
  background-size: cover; }
  @media only screen and (min-width: 1921px) {
    .footer-area::before {
      height: 1120px; } }

@media (min-width: 992px) {
  .footer-area::before {
    display: none;
  }
}

#particles-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
 }

.footer-widget {
  padding-top: 10px;
  padding-bottom: 10px;
 }

.footer-about .logo img {
  width: 220px; }

.footer-about .text {
  color: #333;
  line-height: 24px;
  margin: 0;
 }

.footer-about .social {
  margin-top: 40px; }
  .footer-about .social li {
    display: inline-block;
    margin-right: 30px; }
    .footer-about .social li a {
      font-size: 22px;
      color: #fff;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .footer-about .social li a:hover {
        color: #ccc; }

.footer-title .title {
  font-size: 24px;
  font-weight: 700;
  color: #FFF; }

.link-wrapper {
  padding: 0 35px; }
  @media (max-width: 767px) {
    .link-wrapper {
      padding: 0;
      padding-right: 50px; } }
  .link-wrapper .link {
    padding-top: 20px; }
    .link-wrapper .link li {
      margin-top: 20px; }
      .link-wrapper .link li a,
      .contact li a {
        font-size: 16px;
        color: #FFF;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .link-wrapper .link li a:hover,
        .contact li a:hover {
          color: #ccc; }

.footer-contact .contact {
  padding-top: 20px; }
  .footer-contact .contact li {
    margin-top: 20px;
    font-size: 16px;
    color: #fff; }

.footer-copyright {
  border-top: 1px solid #292A9F;
  padding-top: 10px;
  padding-bottom: 12px;
}

/* Footer copyright centering */
.footer-copyright {
  text-align: center;
}
.footer-copyright .row {
  justify-content: center !important; /* rows are flex in Bootstrap */
}
.copyright-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.copyright-content p,
.copyright-content a {
  text-align: center;
}

.copyright-content {
  padding-top: 15px;
  text-align: center; }
  .copyright-content p {
    color: #333; }
  .copyright-content a {
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .copyright-content a:hover {
      color: #ccc; }

/* --- Footer hard overrides (ensure height = content only) --- */
footer.footer-area {
  min-height: 0 !important;
  height: auto !important;
}
footer.footer-area::before {
  content: none !important; /* fully remove decorative background that can inflate perceived height */
}

/*===== BACK TO TOP =====*/
.switcher {
  font-size: 20px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
  background: #FFF;
  padding: 10px;
  line-height: 1 !important;
  border-radius: 100%;
  height: 40px !important;
  width: 40px;
}
  .switcher:hover {
    color: #fff; }

@media only screen and (min-width: 576px) {
  .mobile-cta {display: none;}
  .col-lg-8 {padding: 0;}
}
@media only screen and (max-width: 576px) {
  .side-img {display: none;}
  .switcher {display: block;}
  .col-12 {padding: 0;}
}

.main-btn-lang {
  background: #FFF;
  padding: 10px;
  line-height: 1.4 !important;
  border-radius: 100%;
  height: 40px !important;
  width: 40px;
  margin-left: 20px;
}

/* ========= CARDS EXPAND ============= */
.cards {
  display: flex;
  flex-flow: row wrap;
}

.card_t {
  margin: 15px;
  width: calc((100% / 2) - 30px);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  .card_t {
    width: calc((100% / 2) - 30px);
  }
}
@media screen and (max-width: 767px) {
  .card_t {
    width: 100%;
  }
}
.card_t:hover .card__inner {
  background-color: transparent;
  transform: scale(1.05);
}
.card__inner {
  width: 100%;
  padding: 20px;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
  border-radius:15px;
  font-size: 20px;
  text-align: left;
  transition: all 0.2s ease-in-out;
  font-family: georgia;
  font-style: italic;
}

.card__inner span {width:85%;}

.card__inner:after {
  transition: all 0.3s ease-in-out;
}
.card__inner .fa {
  margin-top: 0.25em;
}
.card__expander {
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  width: 100%;
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #333;
  font-family: georgia;
  font-style: italic;
  font-size: 20px;
  border: 1px solid #333;
  border-radius: 15px;
}

.text-box {
  padding:20px;
  width:100%;
  font-family: 'IBM Plex Sans', sans-serif;
  text-transform: none;
  font-style: normal;
  font-size: 20px;
}
.card__expander img {
  font-size: 0.75em;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.card__expander .fa:hover {
  opacity: 0.9;
}
.card_t.is-collapsed .card__inner:after {
  content: "";
  opacity: 0;
}
.card_t.is-collapsed .card__expander {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}
.card_t.is-expanded .card__inner {
  background-color: #fff;
}
.card_t.is-expanded .card__inner:after {
  content: "";
  opacity: 1;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 15px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #333a45;
}
.card_t.is-expanded .card__inner .fa:before {
  content: "ï„•";
}
.card_t.is-expanded .card__expander {
  overflow: visible;
  margin-top: 30px;
  opacity: 1;
}
.card_t.is-expanded:hover .card__inner {
  transform: scale(1);
  background-color: #fff;
}
.card_t.is-inactive .card__inner {
  pointer-events: none;
  opacity: 0.5;
}
.card_t.is-inactive:hover .card__inner {
  background-color: #fff;
  transform: scale(1);
}

@media screen and (min-width: 992px) {

  .card_t:nth-of-type(3n+2) .card__expander {
    margin-left: calc(8% - 30px);
  }

  .card_t:nth-of-type(3n+3) .card__expander {
    margin-left: calc(17% - 60px);
  }

  .card_t:nth-of-type(3n+4) {
    clear: left;
  }

  .card__expander {
    width: calc(190% + 60px);
  }

  .card__expander_fp {
    margin-left: calc(-90% - 60px) !important;
  }

  .card__expander_bp {
    margin-left: calc(-98% - 30px) !important;
  }

  .card__expander_pe {
    margin-left: calc(-90% - 60px) !important;
  }

   .card__expander_cm {
    margin-left: calc(-90% - 60px) !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .card_t:nth-of-type(2n+2) .card__expander {
    margin-left: calc(-100% - 30px);
  }

  .card_t:nth-of-type(2n+3) {
    clear: left;
  }

  .card__expander {
    width: calc(200% + 30px);
  }
}

@media screen and (max-width: 768px) {
  
  .card__inner img {width:10%;}

}

/* ! Styling by Bobby ! */
/* Category grid override for specificity and bullet rendering */
.category-grid-wrapper ul.category-list {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 28px;
  line-height: 1.6;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 32px;
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}

.category-grid-wrapper ul.category-list li {
  font-size: 28px;
  display: flex;
  align-items: flex-start;
}

.category-grid-wrapper ul.category-list li::before {
  content: "•";
  color: #333;
  margin-right: 8px;
  font-size: 28px;
  line-height: 1;
}
.finance-bullet {
  margin-left: 20px;
}
.table-link {
  color: #333;
  text-decoration: underline;
}
.table-link:hover {
  color: #e56c1f;
  transition: 0.3s;
}
.toggleSpan {
  display: inline;
}
.wow {
  animation-duration: 0.8s !important;
  animation-timing-function: ease-out !important;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* always 2 columns on desktop */
  gap: 24px 48px; /* increase row x column spacing */
  margin: 24px auto 0 auto; /* center the grid within the column */
  justify-items: start; /* keep text left-aligned inside each card */
}

@media (max-width: 767px) {
  .category-grid {
    grid-template-columns: 1fr; /* single column on small screens */
    gap: 16px 24px;
  }
}

.category-card {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 28px;
  line-height: 1.4;
  color: #2E2E2E;
}

.winner-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
  align-items: start;
}

.winner-photo-item {
  text-align: left;
}

.winner-photo-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-caption {
  font-size: 14px;
  color: #6A6972;
  margin-top: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
}
/* Only enlarge the three logos after Foyer in the first row */
.lead-partners-grid .lead-partners-row:first-child a img.partner-logo-sm {
  max-width: 260px !important;
  width: auto; /* prevent width:100% from constraining inside <a> */
}

/* Center the first row as a group even with custom logo sizes */
.lead-partners-grid .lead-partners-row:first-child {
  justify-content: center;
}

/* Ensure Foyer (and any .partner-logo) is still large */
.lead-partners-row img.partner-logo {
  max-width: 260px;
  width: auto;
}
/* Lead partners grid 2-column responsive (2025 update) */
.lead-partners-grid-2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  justify-items: center;
  align-items: center;
  margin-top: 24px;
}
.lead-partners-grid-2col img.partner-logo {
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .lead-partners-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .lead-partners-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* Medium partner logos (BNP, Juniper) */
.lead-partners-grid-3x2 img.partner-logo-md {
  width: 240px;       /* force a larger width */
  max-width: none;    /* override the 160px cap from the generic rule */
  height: auto;
}

@media (max-width: 768px) {
  .lead-partners-grid-3x2 img.partner-logo-md {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .lead-partners-grid-3x2 img.partner-logo-md {
    width: 160px;
  }
}