.fboxy-wrapper {
z-index: 999999999999999999999999999!important;
bottom: unset;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

@media(max-width:575px) {
.fboxy-wrapper {
max-width: 95%;
}
}

/* Overall container layout */
.fGalleryView {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;          /* ✅ columns stay equal in height */
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 100%;
  margin: 40px auto;
}

/* Left side image column - 30% */
.fGalleryImage {
  flex: 0 0 30%;
  
}

.fGalleryImage img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Right side content column - 70% */
.fGalleryText {
  flex: 0 0 70%;
  padding-left: 20px;
  color: #222;
}

.fGalleryText h2,
.fGalleryText .profile-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.fGalleryText p,
.fGalleryText .profile-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

/* Experience heading */
.fGalleryText h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #000;
}

/* Experience list */
.fGalleryText ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fGalleryText ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}
.fGalleryText ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a859;  /* green check icon */
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .fGalleryView {
    flex-direction: column;
    text-align: center;
  }
  .fGalleryImage,
  .fGalleryText {
    flex: 100%;
    padding: 20px 0;
  }
  .fGalleryImage img {
    height: auto;
    max-width: 100%;
  }
}


h1 {
    font-size: 3.25rem !important;
}

.fModuleTitle h3 {
    font-size: 2.2rem !important;
}

@media(max-width:991.9px){
.main-menu {
        position: static!important;
    }
    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 4em;
        height: fit-content;
        width: 100%;
        background-color: var(--brand-color-theme-logo-blue);
        width: 95%;
        padding: 0;
        z-index: 9999999;
    }
    .main-menu nav ul {
        margin: 0;
    }
    .main-menu nav ul.fMenu>li>a {
        display: block;
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: var(--brand-color-theme-logo-blue);
    }
    .main-menu nav ul.fMenu>li:last-child>a {
        border-bottom: 0;
    }
    .main-menu nav ul.fMenu>li.has-submenu>a::after {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: white;
    }
    .main-menu nav ul.fMenu>li.has-submenu>ul {
        position: relative;
        padding: 7px;
        background-color: var(--brand-color-theme-logo-blue);
        display: none;
    }
    .main-menu nav ul.fMenu>li.has-submenu>ul>li>a {
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: var(--brand-color-theme-logo-blue);
        display: block;
    }
}

