@font-face {
    font-family: Boombshell;
    src: url(assets/Boomshell\ Font\ Reguler.otf);
}
@font-face {
    font-family: Regular;
    src: url(assets/AtypDisplayTRIAL-Regular-BF65727125d566e.otf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}
body.no-scroll {
    overflow: hidden;
}
header{
    z-index: 3;
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
    background: transparent;
    backdrop-filter: blur(6px);
    font-family: Josefin Sans;
    position: fixed;
}
header.scrolled {
    background-color: rgba(51, 51, 51, 0.9); /* Darker background when scrolling */
    transition: background-color 0.5s ease-in-out;
}


/* CSS */
.button-52 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-52:after {
  content: "";
  background-color: #2BA2A1;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}

/* CSS */
.button-57 {
  position: relative;
  overflow: hidden;
  margin-left: 30px;
  border: 1px solid #18181a;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #2BA2A1;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-57 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-57 span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
}

.button-57:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-57:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}
button i{
    color: rgb(223, 28, 28);
}
header .brand{
     color: #fff;
     font-size: 1.5em;
     font-weight: 700;
     text-transform: uppercase;
     text-decoration: none;
}
header .brand h3{
    font-size: 0.8em;
    color: #AEEEEE;
}
header .brand span{
    font-size: 0.7em;
    display: flex;
    justify-content: center;
    margin-top: 6px;
    color: #2BA2A1;
}
header .navigation{
    position: relative;
}
.brand{
    display: flex;
    align-items: center;
}
header a img{
    height: 75px;
}
header .navigation .navigation-items a {
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;  
}
header .navigation .navigation-items a::before{
    content: "";
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before{
    width: 100%;
}
section{
    padding: 100px 200px;
}
.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #b56add;
}
.home:before{
    z-index: 1;
    content: "";
    position: absolute;
    background:rgba(3, 96, 251, 0.3) ;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.home .content{
    z-index: 2;
    color:#fff ;
    width: 70%;
    margin-top: 50px;
    display: none;
}
.home .content.active{
    display: block;
}
.home .content h1{
     font-size: 4em;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 5px;
     line-height: 75px;
     margin-bottom: 40px;
     font-family: Outfit;
     opacity: 0; /* Initially hidden */
     transform: translateY(20px); /* Slightly moved down */
     animation: fadeInUp 1.5s ease-out forwards;
}
.home .content h1 span{
    font-size: 1.2em;
    font-weight: 600; 
    
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home .content p{
   margin-bottom:65px; 
   width: 70%;
   line-height: 1.2;
   font-family: Josefin Sans;
   opacity: 0; /* Initially hidden */
     transform: translateY(20px); /* Slightly moved down */
     animation: fadeInUp 2s ease-out forwards;
}
.home .content a{
    background: #fff;
    padding: 15px;
    color: rgb(43, 80, 226);
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;

}
.home .media-icons{
    z-index: 2;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition:0.5s ease; 
}
.home .media-icons a{
    color: #fff;
    font-size: 1.6em;
}
.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}
.home .media-icons a:hover{
    transform: scale(1.3);
}
.home img{
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-navigation{
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}
.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background:#fff ;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}
.slider-navigation .nav-btn.active{
    background: #2696E9;
}
.slider-navigation .nav-btn:not(:last-child){
    margin-right:20px ;
}
.slider-navigation .nav-btn:hover{
    transform: scale(1.3);
}
.image-slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}
.image-slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}
@media (max-width:768px) {
    .home .content h1{
        font-size: 3em;
    }
    .home .content p {
    margin-bottom: 45px;
    width: 95%;
    line-height: 1.05;
    }
}
@media (max-width:1040px){
    *, ::after, ::before {
    box-sizing: border-box;
    }
    header{
    padding: 12px 20px;
    }
    section{
        padding: 100px 20px;
    }
    .home .media-icons{
       right: 15px; 
    }
    header .navigation{
        display: none;
    }
    header .navigation.active{
        position: fixed;
        width: 100%;
        height:100vh ;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background:rgba(1, 1, 1, 0.5) ;
    }
    header .navigation .navigation-items a{
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }
    header .navigation .navigation-items a:before{
        background: #222;
        height:5px ;
    }  
    header .navigation.active .navigation-items{
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius:5px;
        box-shadow: 0 5px 25px rgb(1 1 1/20%);

    }
    .menu-btn{
        background: url(https://img.icons8.com/ios-glyphs/30/menu--v1.png)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height:40px ;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .menu-btn.active{
       z-index: 3;
       background:url(https://img.icons8.com/ios-glyphs/30/macos-close.png)no-repeat;
       background-size: 25px;
       background-position: center;
       transition: 0.3s ease ;
    }
    .popup{
        width: 95% !important;
        flex-direction: column;
    }
    .left-section{
        width: 100% !important;
    }
    .right-section{
        width: 100% !important;
    }
    .trust-mission{
        padding: 3em 0 0 0 !important;
        font-size: 1.3em !important;
    }
    .team{
        margin-top: 0 !important;
    }
    .team h2{
        font-size: 1.6em !important;
        margin-bottom: 30px !important;
        text-align: center;
    }
    .contact-form h3{
        font-family: 'Outfit';
       font-size: 2em !important;
    text-align: center;
    margin-bottom: 50px;
    }
    .contact-form .container{
        flex-direction: column;
        padding: 0;
    }
}
.team{
    padding: 4em 0;
    margin-top: 60px;
}
.row{
    justify-content: space-between;
}
.team h2{
    font-family: Outfit;
    font-size: 2.6em;
    font-weight: 500;
    margin-bottom: 60px;
}
.our-team{
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.our-team:before,
.our-team:after{
    content: "";
    width: 130px;
    height: 150px;
    background: #00bed3;
    position: absolute;
    z-index: -1;
}
.our-team:before{
    bottom: -20px;
    left: 0;
}
.our-team:after{
    top: -20px;
    right: 0;
}
.our-team .pic{
    margin: 20px;
    position: relative;
    border: 3px solid #00bed3;
    transition: all 0.5s ease 0s;
}
.our-team:hover .pic{
    border-color: #33343e;
}
.our-team .pic:after{
    content: "";
    width: 100%;
    height: 0;
    background: #33343e;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: 0 0 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .pic:after{
    height: 100%;
    opacity: 0.85;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 100%;
    position: absolute;
    top: -50%;
    left: 0;
    transition: all 0.5s ease 0.2s;
}
.our-team:hover .team-content{
    top: 38%;
}
.our-team .title{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.our-team .post{
    font-size: 14px;
    color: #fff;
    line-height: 26px;
    text-transform: capitalize;
}
.our-team .social{
    padding: 0;
    margin: 40px 0 0 0;
    list-style: none;
}
.our-team .social li{
    display: inline-block;
}
.our-team .social li a{
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    margin: 0 7px;
    transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
    background: #fff;
    color: #00bed3;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}
/* color: #83D5CA */
/* color:#2BA2A1 */
button{
    padding: 15px;
    background-color: #2BA2A1;
    font-family: 16px;
}
.trust-mission{
    padding: 8em 4em 5em 0em;
    font-size: 1.5em;
    line-height: 1.8;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trust-mission p{
    font-weight: 500;
    text-align: center;
}
/* aboutus */
.aboutUs{
    
    display: flex;
    align-items: flex-start;
    justify-content:space-between;
    /* margin-top: 60px; */
}
/* .aboutUs img{
    height: 350px;
    width: 350px;
    margin-right: 70px;
} */
.aboutUs img:after{
    content: "";
    width: 100%;
    height: 0;
    background: #33343e;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: 0 0 0;
    transition: all 0.5s ease 0s;
}
.aboutUS img::after:hover{
    height: 100%;
    opacity: 0.85;
}
.aboutUs .about-content h1{
    font-family: Outfit;
    font-size: 3em;
}
.aboutUs .about-content h3{
    font-family: Outfit;
    font-size: 1.5em;
    color: #595959;
}
.aboutUs .about-content p{
    font-family: Josefin Sans;
    font-size: 1.15em;
    padding: 3em 5em;
    line-height: 1.3;
    color: rgb(109, 107, 107);
}
.aboutUs .about-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.goals{
    margin-top: 120px;
}
.goals h2{
    text-align: center;
    font-family: Outfit;
    font-size: 1.5em;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #595959;
}
.goals .goals-content{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.goals .goals-content .goalsDetail{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 2rem;
}
.goals .goals-content .goalsDetail i{
    font-size: 2.5em;
    padding: 0.8em 2em;
    color: #2BA2A1;
}
.goals .goals-content .goalsDetail h3{
    font-family: Outfit;
    font-size: 25px;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}
.goals .goals-content .goalsDetail p{
    font-family:Josefin Sans;
    color: rgb(109, 107, 107);
    font-size: 17px;
    line-height: 1.3;
}
@media (max-width:1040px){
    .aboutUs {
    flex-direction: column-reverse;
    align-items: center;
    }
    .aboutUs img {
    margin:0;
    }
    .aboutUs .about-content {
    flex-direction: column;
    }
    .aboutUs .about-content h1{
        font-size: 1.6em;
    }
    .aboutUs .about-content h3{
        font-size: 1.2em;
    }
    .aboutUs .about-content p {
    font-size: 1.15em;
    padding: 1.03rem;
    }
    .goals{
        margin-top: 30px;
    }
    .goals h2{
        margin-bottom: 6px;
    }
    .goals .goals-content {
        flex-direction: column;
    }
    .goals .goals-content .goalsDetail{
        padding: 1.03rem;
    }
    .gallery{
        padding: 1.03rem;
    }
    .gallery h2 {
    font-size: 2.5em;
    padding: 1.03rem;
    }
    .gallery p {
    font-size: 1.13em;
    padding: 1.03rem !important;
    margin-bottom: 40px;
}
.gallery-section{
    padding: 0 !important;
}
}
/* gallery */
.gallery h2{
    font-family: Outfit;
    font-size: 3em;
    margin-bottom: 20px;
    text-align: center;
}
.gallery p{
    font-family: Josefin Sans;
    font-size: 1.13em;
    text-align: center;
    color: #595959;
    padding: 0 7em;
    margin-bottom: 40px;
}

.gallery-section {
	font-family: Lato, sans-serif;
	margin: 0;
	padding: 1rem;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: #2BA2A1; */
}

.gallery-section img {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 1000ms;
}

.gallery-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	max-width: 100%;
	width: 70rem;
}

.gallery-section figure {
	margin: 0;
	position: relative;
	overflow: hidden;
}

.gallery-section figure::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	background: rgba(0, 0, 0, 0.5);
	transform-origin: center;
	opacity: 0;
	transform: scale(2);
	transition: opacity 300ms;
}

.gallery-section figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	place-items: center;
	text-align: center;
	padding: 1rem;
	color: white;
	font-size: 1.2rem;
	z-index: 1;
	opacity: 0;
	transition: opacity 600ms, transform 600ms;
}

.gallery-section a:is(:hover, :focus) figure::after {
	opacity: 1;
}

.gallery-section a:is(:hover, :focus) figcaption {
	opacity: 1;
	transition: opacity 600ms;
}

@media (prefers-reduced-motion: no-preference) {
	.gallery-section figcaption {
		transform: translate3d(0, 2rem, 0);
	}
	
	.gallery-section figure::after {
		border-radius: 50%;
		opacity: 1;
		transform: scale(0);
		transition: transform 900ms;
	}
	
	.gallery-section a:is(:hover, :focus) figure::after {
		transform: scale(2.5);
	}

	.gallery-section a:is(:hover, :focus) figcaption {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition: opacity 600ms 400ms, transform 600ms 400ms;
	}

	.gallery-section a:is(:hover, :focus) img {
		transform: scale(1.2);
	}
}

/* involve-banner */
/* .involve-banner{
    width: 100%;
    height: 40%;
    background-image: url(assets/group.jpeg);
    padding: 14em 4em;
    object-fit: cover;
} */
.involve-banner img{
    width: 100%;
    height: 656px;
    object-fit: cover;
    object-position: top;
}
.involve-banner img:after{
    content: "";
    width: 100%;
    height: 0;
    background: #33343e;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: 0 0 0;
    transition: all 0.5s ease 0s;
}
.involve-banner:hover img:after{
    height: 100%;
    opacity: 0.85;
}
.involve-banner h2{
    position: relative;
    top: 80%;
    left: 45%;
    z-index: 4;
}
/* EVENTS */
.parent {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 8px;
    padding: 3em 0 0 3em;
}
  .recent-events h2{
    font-size: 3em;
    font-weight: 700;
    font-family: Outfit;
    padding: 3em 0 0.8em 3em;
  }  
.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 6 / span 6;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    margin-right:  30px;
    transition: all 0.3s ease;
}
.div1 h3{
    font-size: 23px;
    padding-top: 2em;
    
}
.div1 :hover{
    color: #2BA2A1;
    cursor: pointer;
}
.div1 p{
    color: #9ea0a9;
}
.event-img{
    height: 415px;
    width: 240px;
    image-rendering: auto;
}
.events img:hover{
    transition: all 0.5s ease;
}
.events{
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 15px;
    /* opacity: 0; */
    /* transform: translateY(20px); */
}
.events.animate {
    animation: fadeIn 0.8s ease-out forwards;
}
.events:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}
.card-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.events:hover .card-image img {
    transform: scale(1.1);
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}
.events:hover .image-overlay {
    background: rgba(0, 0, 0, 0.3);
}
.card-content {
    padding: 2rem;
}
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}
.events:hover .card-title{
    color: #2BA2A1;
}
.card-img img{
     transition: transform 0.7s ease;
}
.events:hover .card-img img{
    transform: scale(1.1);
}
.card-description {
    color: #6b7280;
    line-height: 1.6;
    margin-top: 1.3rem;
    margin-bottom: 1.5rem;
}


/* .events img:hover{
    scale: 1.03 ;
} */
.event-img img{
    object-fit: cover;
    height: 423px;
    width: 445px;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    transition: all 0.3s ease;
    
}


.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    transition: all 0.3s ease;
}

.div4 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 4;
    transition: all 0.3s ease;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 4;
    transition: all 0.3s ease;
}
@media (max-width:1040px){
    .parent{
        padding: 0;
        display: block;
    }
}


@media (max-width: 480px){
    .recent-events h2{
        font-size: 2.6em;
        padding: 1.5em 0 0 0 ;
        text-align: center;
    }
    .media-gallery-heading h2{
        text-align: center;
        /* font-size: 2.6em !important; */
    }
}
/* contact-form */
.contact-form .container {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin: auto;
            padding: 20px;
        }
        .contact-form h3{
            font-family: Outfit;
            font-size: 2.3em;
            text-align: center;
            margin-bottom: 30px;
        }
        .contact-form .container .image-box {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 0px 50px 50px 0px; /* Curved right border */
        }
        .contact-form .container .image-box img {
            width: 100%;
            height: auto;
            display: block;
        }
         .contact-form .container .image-box:hover {
            transform: scale(1.05); /* Slight enlargement */
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Shadow effect */
            transition: ease-in-out 0.6s;
        }
        .overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 20px;
            border-radius: 10px;
        }
        .form-box {
            flex: 1;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 10px;
        }
        .form-box input, .form-box textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .form-box button {
            background: #007BFF;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .form-box button:hover {
            background: #0056b3;
        }




        /* News & Features */
        .media-gallery-heading{
            text-align: center;
            padding-bottom: 2em;
        }
        .media-gallery-heading h2{
            font-size: 3em;
            font-family: Outfit;
            font-weight: 600;
        }
        .media-gallery {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #dbeafe, #f9fafb);
  border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    margin: 0 auto;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-gallery .container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vmin;
  overflow: hidden;
  transform: skew(5deg);

  .card {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
    .card__head {
      color: black;
      background: #2BA2A1;
      padding: 0.5em;
      transform: rotate(-90deg);
      transform-origin: 0% 0%;
      transition: all 0.5s ease-in-out;
      min-width: 100%;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 1em;
      white-space: nowrap;
    }

    &:hover {
      flex-grow: 10;
      img {
        filter: grayscale(0);
      }
      .card__head {
        text-align: center;
        top: calc(100% - 2em);
        color: white;
        background: rgba(0, 0, 0, 0.5);
        font-size: 2em;
        transform: rotate(0deg) skew(-5deg);
      }
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 1s ease-in-out;
      filter: grayscale(100%);
    }
    &:not(:nth-child(5)) {
      margin-right: 1em;
    }
  }
}
/* Footer */
/* section {
    padding: 60px 0;
    min-height: 100vh;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
} */
.main-footer{
  position: relative;
  background: #3f4b4b;
  color: #fff;
}

.footer-content{
  position: relative;
  padding: 85px 0px 80px 0px;
}
.footer-content:before{
  position: absolute;
  content: '';
  background: url(https://i.ibb.co/jyRLrBZ/world-map.png);
  width: 744px;
  height: 365px;
  top: 50px;
  right: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.footer-content .logo-widget{
  position: relative;
  margin-top: -5px;
}
.footer-content .logo-widget .footer-social li{
  position: relative;
  display: inline-block;
  margin-right: 9px;
}
.footer-content .logo-widget .footer-social li:last-child{
  margin-right: 0px;
}
.footer-content .logo-widget .footer-social li a{
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #2e3138;
  color: #9ea0a9;
  text-align: center;
  border-radius: 50%;
}
.footer-content .logo-widget .footer-social li a:hover{
  color: #ffffff;
  background: #ff5e14;
}
.footer-content .logo-widget .logo-box{
  margin-bottom: 25px;
}
.footer-content .logo-widget .text p{
  color: #9ea0a9;
  margin-bottom: 32px;
}
.footer-content .footer-title{
  position: relative;
  font-size: 24px;
  line-height: 35px;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 27px;
}
.footer-content .service-widget .list li{
  display: block;
  margin-bottom: 12px;
}
.footer-content .service-widget .list li a{
  position: relative;
  display: inline-block;
  color: #9ea0a9;
}
.footer-content .service-widget .list li a:hover{
  color: #ff5e14;
}
.footer-content .contact-widget p{
  color: #9ea0a9;
  margin-bottom: 15px;
}
.footer-content .contact-widget{
  margin-left: 90px;
}
.footer-content .contact-widget .footer-title{
  margin-bottom: 29px;
}
.contact-details{
  z-index: 3;
  position: relative;
}
.contact-details p i{
  font-size: 1.5em;
  margin-right: 15px;
}

/** footer-bottom **/

.footer-bottom{
  position: relative;
  background: #13151a;
  padding: 25px 0px 22px 0px;
}
.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .footer-nav li a{
  position: relative;
  color: #9ea0a9;
}
.footer-bottom .copyright a:hover,
.footer-bottom .footer-nav li a:hover{
  color: #ff5e14;
}
.footer-bottom .footer-nav{
  position: relative;
  text-align: right;
}
.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-left: 29px;
}
.footer-bottom .footer-nav li:first-child{
  margin-left: 0px;
}
.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background: #9ea0a9;
  width: 1px;
  height: 14px;
  top: 7px;
  left: -18px;
}
.footer-bottom .footer-nav li:first-child:before{
  display: none;
}
.logo-box img {
    max-width: 220px;
}



/* AboutUs.html */

.about-page .aboutTextBox{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3.5em 0;
}
.about-page .aboutTextBox h2 {
    font-weight: 600;
    
}
.about-page .aboutTextBox p{
    width: 70%;
    font-size: 1.3rem;
    font-family: Josefin Sans;
}
.about-page .aboutMision{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 0;
}
hr{
    margin-top: 80px;
    margin-bottom: 30px;
}
.about-page .aboutMision h2{
    margin-top: 60px;
    font-size: 3rem;
    font-weight: 700;
}
.about-page .aboutMision p{
    width: 70%;
    margin-top: 30px;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
}
/* .about-places{
    padding: 5em 0;
} */
.about-info{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3em 0;
}
.about-info .infoText h2{
    font-weight: 700;
    margin-bottom: 30px;
}
.about-info .info-img img{
    height: 400px;
    width: 640px;
    object-fit: cover;
}
.about-info .infoText p{
    width: 95%;
    line-height: 1.88;
    font-size: 1.2rem;
}
.about-jh{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 7em;
    margin-top: 2em;
}
#info-text{
    margin-left: 30px;
}
.about-partners h2{
    text-align: center;
    font-weight: 700;
}
.partner-logo{
    display: flex;
    justify-content: center;
    padding-top: 60px;
}
.partner-logo img{
    height: 180px;
    width: 180px;
    object-fit: cover;
}
.values{
    padding: 150px 150px;
}
.about-workplace{
    padding: 115px 150px;
}
@media (max-width:1040px){
    .value-content{
        margin-top: 0px;
        padding-top: 50px;
    }
    .values{
        flex-direction: column;
        padding: 0 3em;
    }
    .values-content{
        flex-direction: column;
        margin-top: 60px;
    }
    .about-workplace {
    padding: 20px 30px;
    }
    .about-jh{
        padding-top: 0;
        margin-top: 0;
    }
    .about-info .infoText h2 {
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    }
    #info-text{
        margin-left: 0;
    }
    .about-info{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-info .info-img img {
    height: 200px;
    width: 350px;
    object-fit: cover;
    }
    .about-page .aboutTextBox p {
        width: 95%;
        font-size: 1.15rem;
        margin-left: 15px;
    }
    .about-page .aboutMision p {
        width: 95%;
    margin-top: 20px;
    font-size: 1.26rem;
    line-height: 1.8;
}
}


/* Overlay Fade-in */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Popup Scale Animation */
.popup {
    display: none;
    width: 50%;
    background: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
        /* Left Section */
        .left-section {
            width: 50%;
            padding: 10px;
            text-align: left;
        }
        .left-section img {
            width: 100%;
            border-radius: 10px;
        }
        /* Right Section */
        .right-section {
            width: 50%;
            padding: 10px;
            text-align: left;
        }
        .input-field {
            width: 90%;
            padding: 8px;
            margin: 8px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .donate-btn {
            background: #3399cc;
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
            width: 100%;
            border-radius: 5px;
        }
        /* Close Button */
        .close-btn {
            position: absolute;
            top: 10px; right: 10px;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
        }
        .value-content{
            background-color: gainsboro;
        }

        .values{
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* padding: 0 3em; */
            
            
        }
        .values h3{
            font-family: Outfit;
            font-size: 2em;
            font-weight: 600;
        }
        .values-content{
            display: flex;
            align-items: center;
            justify-content: space-between;
            
        }
        .values-items{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-evenly;
            text-align: center;
            padding: 0 1.3em;
        }
    .values-items i{
        font-size: 3em;
        color: #2BA2A1;
        padding: 1.3rem;
    }