 /*--------------- top Image section --------------------- */
 .bg-zoom {
  width: 100vw;              /* full viewport width */
  height: 350px;
  background-image: url("img/vision-header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
  transform-origin: center center;
  animation: zoomOut 8s ease-in-out forwards;

  /* important fix */
  will-change: transform;    /* optimize GPU rendering */
  backface-visibility: hidden;
}

@keyframes zoomOut {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

/* Extra: stop page scrollbar flicker */


 /*--------------- top Image section --------------------- */
 

/* OUR MISSION css*/

.OurMission {
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.OurMission::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -210px;
  bottom: 40px;
  width: 50%;
  background: url("img/logo-only.png") right center / contain no-repeat;
  opacity: 1;
  mix-blend-mode: screen;
  transition: all 0.3s ease;
  z-index: 0;
}

.OurMission .container {
  position: relative;
  z-index: 1;
}

.ParaText {
font-family: "Gordita", Sans-serif;
  font-size: 16px;
  color: #444;
  line-height:30px;
}

.ParaText-mission {
font-family: "Gordita", Sans-serif;
  font-size: 16px;
  color: #444;
  line-height:30px;
  padding-right:47px;
}

.SubHeading {
  
  font-family: "Gordita", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 3px;
    color: #3DCFE0;
}

.HeadingBox {
  
  font-family: Butler;
    font-weight: 700;
	font-size:50px;
    letter-spacing: 0.02em;
	color:#333333;
	line-height: 1.37em;
}

@media (max-width: 992px) {
.bg-zoom {
height:300px;
}
  .OurMission::before {
    right: -200px;
    width: 80%;
    opacity: 0.6;
  }

  .HeadingBox {
   font-size:45px;
  }
}

@media (max-width: 768px) {
.bg-zoom {
height:200px;
}

  .OurMission::before {
    top: 50px;
    right: 0;
    width: 100%;
    opacity: 0.3;
    background-position: center;
  }

  .HeadingBox {
    font-size: 45px;
    text-align: center;
	padding-bottom:20px;
  }

  .SubHeading {
    text-align: center;
  }

  .OurMission .col-md-6 {
    text-align: center !important;
  }
  .ParaText-mission {
    font-size: 16px;
	text-align:justify;
	margin-left:15px;
  }
}

@media (max-width: 480px) {
.bg-zoom {
height:150px;
}
  .HeadingBox {
    font-size: 1.4rem;
  }

  .ParaText {
    font-size: 15px;
  }
  
  .ParaText-mission {
    font-size: 15px;
  }
}

/*  OUR MISSION CSS */

/*  Style List */

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
font-family: "Gordita", Sans-serif;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  transition: color 0.3s ease;
}

/* Arrow icon */
.styled-list li::before {
  font-family: "Font Awesome 5 Pro"; 
  font-weight: 900;                  /* solid */
  content: "\f178";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color:#003728;  
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.styled-list li:hover {
  color: #111;
}

.styled-list li:hover::before {

  color: #5cc9e0; /* teal blue */
  transform: translateX(4px);
}

/* Responsive font adjustments */
@media (max-width: 768px) {
  .styled-list li {
    font-size: 15px;
    line-height: 1.6;
  }
}
/* Style List Close */