/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
/*     --primary: #08192f;
	--secondary: #0ceccc;
	--sky: #179ec1;
	--gradient: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--sky) 50%,
        var(--secondary) 100%
    ); */
	--primary: #09431b;
    --secondary: #e7b012;
    --sky: #00bcd4;
    --gradient: linear-gradient(90deg, var(--primary) 0%, #00bcd4 50%, var(--secondary) 100%);
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Oswald', sans-serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1250px;
}
/* ================================
Btn Primary
================================ */
.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 12px 60px 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s ease;
}
.btn-primary::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 30px;
    z-index: -1;
    transition: all 0.5s ease;
}
.btn-primary::after {
    content: "➜";
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000 !important;
    transition: 0.4s ease;
}
.btn-primary:hover::before {
    width: 100%;
    right: 0;
    height: 100%;
    border-radius: 30px;
}
.btn-primary:hover::after {
    color: #fff;
}
.btn-primary:hover {
    color: #000;
}
/* ================================
   Desktop Navigation
================================ */
.site-header {
    width: 100%;
    z-index: 999;
    color: #fff;
}
.top-bar {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 17px;
}
.info-item i {
    color: var(--primary);
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #333333;
}
.info-item span {
    opacity: 0.7;
}
.info-item a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.social-icons a {
    color: var(--primary);
    font-size: 14px;
    margin-right: 5px;
    background: transparent;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid var(--primary);
    height: 35px;
    width: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.main-header {
    padding: 15px 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}
.nav-menu li a:hover {
   background: var(--gradient);
    color: #fff;
}
.nav-menu li.current-menu-item > a, .nav-menu li.current_page_item > a, .nav-menu li.current-menu-ancestor > a {
    background: var(--gradient);
    color: #fff;
}
.quote-btn {
    background: #ff2d2d;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.quote-btn:hover {
    background: #e60000;
}
.logo img {
    max-height: 50px;
}
.header-wrapper {
    display: flex;
    align-items: stretch;
    background: linear-gradient(90deg, var(--primary), var(--sky));
    position: relative;
    overflow: hidden;
    z-index: 1;
	padding: 6px 0;
}
.header-logo,
.header-right-wrap {
    position: relative;
    z-index: 2;
}

.header-wrapper::before {
	content: '';
    position: absolute;
    background-image: url(https://mveluganda.org/wp-content/uploads/2026/05/header-bg.png);
    top: -100px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    -webkit-animation: wavemove 30s linear infinite, sidemove 7s ease-in-out infinite alternate;
    -moz-animation: wavemove 30s linear infinite,sidemove 7s ease-in-out infinite alternate;
    animation: wavemove 30s linear infinite, sidemove 7s ease-in-out infinite alternate;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@keyframes wavemove{
0% {
    margin-left: 20%;
}

100% {
    margin-left: -30%;
}
}
@keyframes sidemove{
0% {
    margin-top: 0;
}
100% {
    margin-top: 25px;
}
}
.header-logo {
    width: 322px;
/*     background: #ffffff; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
}
.header-logo img {
    max-height: 140px;
	background: #fff;
	border-radius: 50%;
}
.header-logo::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #ddd;
}
.header-right-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.top-bar,
.main-header {
    padding-left: 30px;
}
.top-bar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar {
    min-height: 60px;
    display: flex;
    align-items: center;
}
.main-header {
    min-height: 80px;
    display: flex;
    align-items: center;
}
ul#menu-primary {
    gap: 36px !important;
}
.Btn-Container {
    display: flex;
    width: 200px;
    height: fit-content;
    background: linear-gradient(45deg, #102c29, #0b9039);
    border-radius: 40px;
    box-shadow: 0px 5px 10px #bebebe;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
}
.icon-Container {
  width: 45px;
  height: 45px;
  background-color: #bebebe00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
}
.text {
    width: calc(212px - 39px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    letter-spacing: 1.2px;
}
.icon-Container svg {
  transition-duration: 1.5s;
}
.Btn-Container:hover .icon-Container svg {
  transition-duration: 1.5s;
  animation: arrow 1s linear infinite;
}
@keyframes arrow {
  0% {
    opacity: 0;
    margin-left: 0px;
  }
  100% {
    opacity: 1;
    margin-left: 10px;
  }
}
a.contact-btn {
    text-decoration: none !important;
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover {
    background: var(--secondary);
}
#mobileMenuBtn i{
	color: #fff !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: url(https://mveluganda.org/wp-content/uploads/2026/05/breadcrumb-fish.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
}
section.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content Above Overlay */
section.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff !important;
}
.breadcrumb-title h2 {
    color: #fff;
}
li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
	padding-top: 30px;
	background: linear-gradient(180deg, #00bcd4b3, var(--primary));
	color: #fff;
	margin-top: 80px;
}
footer::before{
	content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    background-image: url(https://mveluganda.org/wp-content/uploads/2026/05/footer-before.png);
    top: -20px;
    z-index: 9;
    background-repeat: repeat-x;
    -webkit-animation: move 12s linear infinite;
    animation: move 12s linear infinite;
    -webkit-animation-delay: -4s;
    animation-delay: -4s;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    background-color: transparent !important;
}
footer::after{
	content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    background-image: url(https://mveluganda.org/wp-content/uploads/2026/05/footer-after.png);
    top: -23px;
    z-index: 9;
    background-repeat: repeat-x;
    -webkit-animation: move 12s linear infinite;
    animation: move 12s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
}
footer .container::before{
	content: '';
    position: absolute;
    background-image: url(https://mveluganda.org/wp-content/uploads/2026/05/header-bg.png);
    top: -100px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
    -webkit-animation: wavemove 30s linear infinite, sidemove 7s ease-in-out infinite alternate;
    -moz-animation: wavemove 30s linear infinite,sidemove 7s ease-in-out infinite alternate;
    animation: wavemove 30s linear infinite, sidemove 7s ease-in-out infinite alternate;
	background-size: cover;
}
@keyframes move  {
    
0% {
    background-position: left 0px bottom 0;
}

100% {
    background-position: left 350px bottom 0;
}

}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
    background: #fff;
    border-radius: 50%;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
	margin-left: 35px;
}
footer .menu li::after {
  content: "\f101"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--gradient);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer .menu li:hover{
	transform: translateX(20px);
}

footer .social-icons {
    display: flex;
    transition: 0.3s;
}
/* footer .social-icons a:hover{
	background: var(--primary);
} */
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--primary) !important;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #fff;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
/* ================================
   		Hero Slider
================================ */
section{
	padding: 80px 0 0;
}
section.hero {
    padding: 0;
}
.hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  z-index: 5;
  color: #fff;
}
.carousel-caption-custom h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}
.carousel-caption-custom p {
  font-size: 18px;
  margin-top: 15px;
}
.hero-buttons {
  margin-top: 20px;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carousel-controls button {
    width: 45px;
    height: 45px;
    background: rgb(255 255 255 / 70%);
    border-radius: 50%;
    border: none;
    color: var(--primary);
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=======================
    Start Section 
=======================*/
.stats-section{
	background: var(--primary);
	padding: 50px 0;
}
.stat-box{
    text-align: center;
    position: relative;
}
.stat-box::after{
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255,255,255,0.15);
}
.col-lg-3:last-child .stat-box::after{
    display: none;
}
.stat-number{
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1;
}
.stat-text{
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
}
/*==========================
     About Section 
==========================*/
/* img animation */
.archcraft-image-wrap{
    position:relative;
}
.archcraft-ripple-box{
    position:relative;
    border-radius:32px;
    overflow:hidden;
}
.archcraft-ripple-img{
    max-width:100%;
    height:auto;
    object-fit:cover;
    border-radius:32px;
    display:block;
}
.ripple-target{
    position:absolute;
    inset:0;
    border-radius:32px;
    overflow:hidden;
    z-index:2;
    pointer-events:auto;
}
/* heading */
.heading{
	font-size: 42px;
    font-weight: 600;
    margin: 15px 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.heading-section {
    text-align: center;
    margin-bottom: 3rem;
}
.about-box {
    display: flex;
    background: var(--primary);
    color: #fff;
    height: 100%;
    border-radius: 35px;
    align-items: flex-end;
    padding: 30px;
}
.about-section{
	position: relative;
}
.fish {
    position: absolute;
    top: 5%;
    right: 6%;
    width: 10%;
    opacity: 0.4;
	 animation: floatXY 8s ease-in-out infinite;
}
.fish-2 {
    position: absolute;
    top: 5%;
    right: 6%;
    width: 20%;
    opacity: 0.4;
	 animation: floatXY 8s ease-in-out infinite;
}
@keyframes floatXY{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
25% {
    transform: translate(10px, -15px) rotate(0deg);
}
50% {
    transform: translate(0px, -25px) rotate(2deg);
}
75% {
    transform: translate(-10px, -15px) rotate(0deg);
}
100% {
    transform: translate(0px, 0px) rotate(-2deg);
}
}
.about-section .nav-pills {
    gap: 20px;
    margin-bottom: 1rem;
}
.about-section .nav-pills .nav-link {
    background: var(--primary);
    color: #fff;
}
.about-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background: var(--gradient);
}
/* Our Work */
.system-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
  cursor: pointer;
  background: #ddd;
	border-radius: 10px;
}
.systems-section{
	position: relative;
}
.systems-section .system-card img {
   width: 100%;
   height: 300px;
   object-fit: cover;
   transition: 0.6s ease;
   display: block;
	border-radius: 10px;
}
.systems-section  .system-card:hover img {
  transform: scale(1.08);
}
.systems-section .overlay {
    position: absolute;
    left: 10px;
    bottom: 15px;
    width: 95%;
    margin: auto;
    background: rgba(4, 33, 56, 0.95);
    border-left: 4px solid #f0b400;
    padding: 14px 16px;
    transition: 0.4s ease;
    border-radius: 12px;
}
   .systems-section .overlay h4 {
      font-size: 18px;
      font-weight: 600;
      color: #f0b400;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

   .systems-section .overlay p {
      margin: 0;
      color: #fff;
      font-size: 13px;
      line-height: 1.5;
      font-style: italic;
    }

   .systems-section .system-card:hover .overlay {
      background: rgba(3, 28, 48, 0.98);
    }
/* Operating model */
section.model {
    background: var(--primary);
    padding: 80px 0;
    margin-top: 80px;
    color: #fff;
}
.process-wrapper{
    position:relative;
}
.process-card{
    text-align:center;
    position:relative;
}
.process-card .icon-box{
    width:180px;
    height:180px;
    border-radius:50%;
    background:#f3f6f8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    position:relative;
    transition:.3s;
}
.process-card .icon-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.process-card .icon-box img{
    max-width: 100%;
	height: auto;
}
.process-card .count{
    position:absolute;
    top:-10px;
    right:-10px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#00bcd4;
    color:#fff;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}
.process-card h5 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.process-card p {
    color: #ffffff;
    font-size: 16px;
}
.process-card:not(:last-child)::after{
    content:"";
    position:absolute;
    top:70px;
    right:-40px;
    width:80px;
    height:30px;
    background:url('https://mveluganda.org/wp-content/uploads/2026/05/arrow-1.png') no-repeat center;
    background-size:contain;
}
.works-overview {
    background: #08192f24;
    padding: 20px;
    border-radius: 20px;
}
.works-overview  p{
	margin: 0;
	padding: 0;
}
/* Testimonial Section */
.testimonial .content-box{
    padding:60px 40px;
}
.testimonial .progress{
    height:10px;
    background:#ddd;
}
span.client {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}
.testimonial .progress-bar{
    width:0;
    background: var(--gradient);
    transition:1.5s;
}
.testimonial .progress-item{
    margin-bottom:25px;
}
.testimonial .image-box{
    position:relative;
}
.testimonial .image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
	border-radius: 20px;
}
.testimonial .testimonial-box{
    position:absolute;
    bottom:0;
    width:100%;
    background: var(--gradient);
    color:#fff;
    padding:40px;
    border-radius: 120px 120px 20px 20px;
}
.testimonial .user{
    display:flex;
    align-items:center;
    gap:15px;
}
.testimonial .user img{
    width:60px;
    height:60px;
    border-radius:50%;
	
}
.swiper-pagination-bullet{
    background:#fff;
    opacity:0.5;
	margin-top: 30px;
}
.swiper-pagination-bullet-active{
    opacity:1;
}
/* --------------- */
.record {
      border-left: 5px solid var(--primary);
      padding: 15px 20px;
      margin-bottom: 15px;
      background: #fff;
      transition: 0.3s;
    }
    .record:hover {
      transform: translateX(6px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .record-title {
      font-weight: 600;
      color: var(--secondary);
      font-size: 20px;
      margin-bottom: 5px;
    }
.image-box img {
    border-radius: 20px;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--primary);
}
    .record p {
      font-size: 16px;
      color: #444;
      margin: 0;
    }

    /* ESG CARDS */
    .esg-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    height: 100%;
}

    .esg-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: 0.4s;
    }

    .esg-card:hover img {
      transform: scale(1.08);
    }

   .esg-overlay {
    width: 100%;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
    height: 100%;
}

    .badge-letter {
      font-size: 26px;
      font-weight: bold;
      color: #00d1ff;
    }

 .esg-title {
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}
    .esg-text {
      font-size: 16px;
      color: #ddd;
    }
/* Service */
.service {
    position: relative;
    background: url("https://mveluganda.org/wp-content/uploads/2026/05/fisg-port.png") center center/cover no-repeat;
    overflow: hidden;
    z-index: 1;
	background-attachment: fixed;
}
.service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.90); /* adjust opacity here */
    z-index: -1;
}
/* ================================
  Contact Page Css
================================ */
   .contact-page-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
}    
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    } 
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
   .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 12px;
        margin-top: 40px;
    }
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s ease;
    border: navajowhite;
}
/*========================
      About Page Css  
===========================*/
.commitment-inner {
    background: #09431b2e;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
}
.strength-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,0.04);
    transition:0.4s;
    border:1px solid #edf3f1;
    position:relative;
    overflow:hidden;
}
.strength-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}
.strength-card .icon-box{
    width:70px;
    height:70px;
    border-radius:18px;
    background:var(--gradient);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}
.strength-card .strength-card h4{
    font-size:24px;
    font-weight:700;
    color:#102d26;
    margin-bottom:15px;
}
.strength-card .strength-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}
section.core-strength-section {
    background: url(https://mveluganda.org/wp-content/uploads/2026/05/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-top: 80px;
}
/*==============================
      Service Section
===================================*/
section.services-section .container-fluid {
    margin: 0;
    padding: 0;
}
.left-image{
    height:100vh;
    background:url('https://mveluganda.org/wp-content/uploads/2026/05/service-bg2.jpg') center center/cover no-repeat;
    position:relative;
}

.right-content{
    background:#031b33;
    color:#fff;
    height:100vh;
    padding:80px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
}
.progress-side {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.progress-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.circle{
    width:110px;
    height:110px;
    border-radius:50%;
	margin-bottom: 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    font-size:30px;
    font-weight:700;
    background:var(--gradient);
}

.circle::before{
    content:"";
    position:absolute;
    width:88px;
    height:88px;
    background:#031b33;
    border-radius:50%;
}

.circle span{
    position:relative;
    z-index:2;
}
.progress-text {
    font-size: 18px;
    line-height: 1.4;
    font-family: Georgia, serif;
}
/* Project Page */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 420px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    z-index: 1;
}

.project-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
}

.project-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
    transition: 0.4s ease;
}

.project-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
}
.project-card:hover img {
    transform: scale(1.08);
}

/*======================
  Responsive Css 
======================*/
@media(max-width: 1200px){
	
}
@media(max-width: 1024px){
	.right-content{
		height: auto;
	}
}
@media(max-width: 991px){
	.stat-box::after{
        display: none;
    }
    .col-md-6:nth-child(3) .stat-box,
    .col-md-6:nth-child(4) .stat-box{
        border-bottom: none;
    }
	.process-wrapper{
        justify-content: center;
        gap: 30px;
    }

    .process-card{
        flex: 0 0 45%;
    }

    .process-card:not(:last-child)::after{
        display: none; /* remove arrows on tablet */
    }
}
@media(max-width: 767px){
.top-bar {
    display: none;
}
.header-right .btn-primary{
		display: none;
	}
.header-wrapper {
    display: flex;
    align-items: center;
}
.header-logo img {
    max-height: 100px;
}
.carousel-caption-custom h1 {
    font-size: 45px;
}
.carousel-controls {
    bottom: 2%;
    left: 20px;
	flex-direction: row;
	top: auto;
}
section {
    padding: 50px 0 0;
}
.fish{
	display: none;
}
.heading{
	font-size: 30px;
}
.process-card .icon-box {
    width: 120px;
    height: 120px;
}
.process-card .count {
    width: 45px;
    height: 45px;
}
.process-card h5{
	font-size: 22px;
}
.esg-card img {
    width: 100%;
    height: auto;
}
.testimonial .content-box {
    padding: 0 40px;
}
section.model {
    background: var(--primary);
    padding: 50px 0;
    margin-top: 50px;
    color: #fff;
}
.stat-number{
	font-size: 30px;
}
.stats-section{
	padding: 40px 0;
}
.works-section .heading-section {
    text-align: center;
    margin-bottom: 0rem;
}
section.core-strength-section {
    padding: 50px 0;
    margin-top: 50px;
}
	.strength-card{
		padding: 20px;
	}
.strength-card .icon-box {
    width: 55px;
    height: 55px;
    font-size: 22px;
}
}
@media(max-width: 667px){
	.right-content{
		padding: 30px 20px;
	}
	.mb-5{
		margin-bottom: 1.5rem !important;
	}
}
@media(max-width: 568px){
    .col-md-6:last-child .stat-box{
        border-bottom: none;
    }
	.carousel-caption-custom h1 {
		font-size: 35px;
	}
	section.core-strength-section {
    padding: 40px 0;
    margin-top: 40px;
}
	section {
		padding: 40px 0 0;
	}
	.heading {
		font-size: 28px;
	}
	.testimonial .image-box img{
		height: auto;
	}
	.testimonial .testimonial-box {
    position: static;
    bottom: 0;
    width: 100%;
    background: var(--gradient);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-top: 20px;
}
}
@media(max-width: 479px){
	.about-box{
		padding: 15px 30px;
		border-radius: 20px;
	}
	.process-card {
    flex: 0 0 100%;
}
	.contact-page-box{
		padding: 25px;
	}
	.info-card {
    padding: 25px;
    gap: 15px;
    flex-direction: column;
}
}
@media(max-width: 414px){
.testimonial .content-box {
    padding: 0 10px;
}
}
@media(max-width: 375px){
	span.client{
		font-size: 18px;
	}
}
@media(max-width: 360px){
	
}
@media(max-width: 325px){
	
}