@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary: #04348B;
  --secondary:#03C91D;
  --ternary: #727272;
  --black:#000000;
  --white: #FFFFFF;
  --grey: #00000099;
  --warning: #EA9F48;
  --success: #4AB37B;
  --success-medium: #A9CCB9;
  --success-light: #CCEBDA;
  --error: #EF717D;
  --error-light: #FFF6F7;
  --gradient1: linear-gradient(180deg, #091242 0%, #091D89 47.51%, #091242 100%);
  --gradient2: linear-gradient(180deg, #DCE9FF 0%, #FFFFFF 47.01%, #DCE9FF 100%);

}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #011740;
  font-size: .85rem;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #011740;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 90%;
    width: 100%;
}

.preloader-logo .main-logo {
    max-width: 40rem;
    height: auto;
    display: block;
    z-index: 1;
    width: 90%;
    filter: brightness(0) invert(1);
}

.spinner-wheel {
    max-width: 10rem; /* adjust as needed */
    height: auto;
    margin-bottom: 1rem; /* space between logo and spinner */
    animation: spin 1.5s linear infinite;
    width: 90%;
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
h1,h2,h3,h4,h5,h6,p{
  color: var(--white);
}

h1 {
    font-size : 3.25rem;
    font-weight: 700;
}
h2{
    font-size: 2rem;
    font-weight: 700;
}
h4 {
    font-size: 1.4rem;
}
h5 {
    font-size: 1.1rem;
    font-weight: 600;
}
h6 {
    font-size: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
}
span, strong{
    color: var(--secondary);
}
hr {
    border-top: 1px solid var(--white) !important;
    width: -webkit-fill-available;
    opacity: 1;
}
.blur {
    -webkit-filter: blur(4px); /* Chrome, Safari, Opera */
    filter: blur(4px);
    pointer-events: none; /* Disable clicking */
  }
  .non-blur {
    -webkit-filter: none;
    filter: none;
    pointer-events: auto; /* Enable clicking */
  }
.invalid-feedback {
    margin-bottom: 0rem;
}


.padding-top {
    padding-top: 5rem;
}

.padding-bottom {
    padding-bottom: 5rem;
}

.mendatory {
    color: var(--error);
}

.middled {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

:not(.input-group)>.bootstrap-select .form-control:not([class*=col-]) {
    width: 80%;
}

.bs-searchbox .form-control {
    width: 100% !important;
}

.bootstrap-select>.dropdown-toggle {
    background-color: #ededed;
    box-shadow: inset 2px 2px 6px rgb(0 0 0 / 25%);
}

.fixed {
    position: fixed;
    top: 0;
}

.col-form-label {
    text-align: right;
}

.primary_btn {
    background-color: transparent;
    border: 1px solid var(--white);
    font-weight: 600;
    color: var(--white);
    padding: .5rem 1rem .5rem 1.5rem;
    width: fit-content;
    border-radius: 2rem;
}

.primary_btn:hover, .primary_btn.active {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--white);
}

.primary_btn:hover img {
    /* filter: brightness(0) invert(1); */
    transform: rotate(330deg); /* Same as -30deg */
    padding-bottom: .25rem;
}

header {
    /*    position: absolute;*/
    right: 0;
    left: 0;
    z-index: 999;
}
#topbar-menu{
    margin-left: 2rem;
}
.container-fluid {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

.row {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
}

.nav-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar-light .navbar-nav .nav-link {
    font-size: .9rem;
    font-weight: 400;
    text-align: center;
    color: var(--white);
    padding: .5rem .5rem !important;
    border-radius: .5rem;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link:hover {
    font-weight: 400;
    color: var(--white);
    background: var(--primary);
    border-radius: .5rem;
}
.dropdown:hover>.dropdown-menu {
    text-align: left;
}

.navbar-light .navbar-toggler {
    color: var(--white);
    border-color: var(--white);
}

/*.nav-item .nav-link:hover::before {
    width: 0.8rem;
    bottom: .9rem;
}*/
.nav-item {
    padding: 0.1rem 0.3rem;
}

.navbar {
    padding: 0rem 0rem;
}

.nav-content {
    padding: .5rem 1rem !important;
    background: #FFFFFF0A;
    border-radius: .5rem;
}

.navigation {
    position: absolute;
    padding: 2rem 0;
    background: transparent;
    z-index: 999;
    width: 100%;
}
.navbar-light .navbar-nav .nav-link.language-btn {
    border: 1px solid var(--white);
}
.card{
    border-radius: 1rem;
    box-shadow: 0px 0px 9px 0px #28A9E03B;
}
.card .card-title{
    color: var(--primary);
}
.card .card-subtitle{
    color: var(--grey);
}
.card p{
    color: var(--grey);
}
.card-footer {
    background-color: var(--white);
    height: 100%;
}
.card-footer:last-child {
    border-radius: 0 0 calc(1rem - 1px) calc(1rem - 1px);
}
.lang .dropdown-toggle::after {
    margin: 0 1rem;
}
.lang .dropdown-menu {
    background-color: #35547D;
    width: -webkit-fill-available;
    color: var(--white);
}
.lang .dropdown-item {
    color: var(--white);

}
.lang .dropdown-item:hover {
    color: var(--primary);

}
/*************** Home Page ***************/

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Adjust text color for better visibility */
    text-align: center;
    width: 100%;
    z-index:3;
}
.banner, .banner-wraper{
    position: relative;
}
.banner-image {
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 16 / 9; /* Or whatever ratio you want */
    width: 100%;
    max-height: 850px;
}
.banner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--banner-url);
    background-size: cover;
    background-position: center;
    opacity: 0.4; 
    z-index: 0;
}
.banner h1 {
    font-size: 5rem;
    font-weight: 700;
}
.banner img{
    opacity: .4;
}
/* .banner-wraper img{
    opacity: 1;
} */
.banner .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.8; /* adjust based on your design */
}
.info{
    background: var(--white);
    border-radius: .5rem;
}
.infos hr{
    border-top: 1px solid var(--primary) !important;
    width: -webkit-fill-available;
    opacity: 1;
}
.infos .card {
    text-align: left;
    background: transparent;
    box-shadow: none;
    border: none;
    width: -webkit-fill-available;
}
.infos .card-body{
    padding: 2rem;
    color: var(--primary);
}
.info p{
    color: var(--primary);
    /*opacity: .8;*/
}
.info h6{
    min-height: 6rem;
    color: var(--primary);
}
.info h6>strong {
    color: var(--primary);
    font-size: 2rem;
}
.home .about {
    background: url(/images/about/home-about-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color:#060000CC;    ;
    background-blend-mode: overlay;
    position: relative;
    min-height: fit-content;
    padding: 1rem 0 1rem 0;
}
.home .about p{
    font-size: 1.5rem;
}
.why {
    background: url(/images/why/why-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: fit-content;
    padding: 1rem 0 1rem 0;
}
.why-img{
    border-radius: .5rem;
    box-shadow: 0px 0px 16px 0px #CCDEFF;
}
.why-features {
    padding: 4rem 3rem 0rem 4rem;
}
.why-features h2, .why-features h5{
    color: var(--primary);
}
.why-features p{
    color: var(--grey);
}
.features-list {
    list-style: none;
    padding: 3rem 2rem 3rem 2rem;

}

.features-list li {
    display: flex;
    font-size: 1rem;
    color: var(--ternary);
}
.features-list img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.wrap {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    overflow: hidden;
}

.slider {
    position: relative;
    z-index: 200;
    margin: 5rem auto;
    /* max-width: 1400px; */
    width: 100%;
}

/* .slick-slide img {
    height: inherit;
} */

/* Make only active slides interactive */
.slick-slide[aria-hidden="true"] {
    pointer-events: none;
}

.item.slick-slide img{
    height: 600px;
    width: 100%;
    border-radius: .5rem;
}
/* Slide animations */
/* Base Slide Styling */
.item.slick-slide {
    width: 950px;
    height: 650px !important;
    transition: transform 0.4s ease;
    position: relative;
}



/* Slides immediately left of center  */
.item.slick-slide.slick-center + .slick-slide {
    transform: scale(0.8) translate(-650px); 
    z-index: 10;
}

/* Slides immediately right of center  */
.item.slick-slide.slick-active {
    transform: scale(0.8) translate(650px); 
}
/* Center slide: full size */
.item.slick-slide.slick-center {
    transform: scale(1);  /* Full size and centered */
    z-index: 30;
}

/* Custom navigation buttons */
.slick-prev, .slick-next {
    z-index: 999;
    bottom: -25px;
    top: unset;
}

.slick-prev {
    left: 20vw;
}

.slick-next {
    right: 20vw;
}

.slick-prev:before, .slick-next:before {
    font-size: 30px;
    line-height: 1;
    opacity: 1;
    color: #fff;
}

/* Custom arrows */
.slick-prev:before {
    content: '';
    background: url('/images/icons/arrow-l.svg') no-repeat center center;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: block;
}

.slick-next:before {
    content: '';
    background: url('/images/icons/arrow-r.svg') no-repeat center center;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: block;
}

/* Dots styling */
.slick-dots li button:before {
    font-size: 18px;
    color: #999;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary);
}


.rotated-text {
    writing-mode: vertical-rl;
    text-align: center;
    white-space: nowrap;
    padding: 10px;
}
.nav-tabs {
    border: none;
}
.home .about .about-img {
    border-radius: .5rem;
    width: 100%;
}
.image-stack .about-img:nth-child(1) {
    height: 280px;
}

.image-stack .about-img:nth-child(2) {
    height: 400px;
}

.image-stack .about-img:nth-child(3) {
    height: 250px;
}

.image-stack-2 .about-img:nth-child(1) {
    height: 400px;
}

.image-stack-2 .about-img:nth-child(2) {
    height: 545px;
}
.home .sustainability .card{
    background: var(--primary);
    color: var(--white);
    border-radius: .5rem;
    max-width: 30rem;
    height: 33rem;
    overflow: auto;
}
.home .sustainability .card-body {
    padding: 2rem 2rem;
}
.home .sustainability .card p{
    color: var(--white);
    font-size: 1.25rem;
}
.home .sustainability{
    background: linear-gradient(#071E5D8F, #071E5D8F), url(/images/sustainability/home-sustainability-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 900px;
    height: 100%;
    /* padding: 5rem 0; */
    position: relative;
    align-items: center;
}
.home .sustainability p{
    margin-bottom: 0;
}
.tab-btn {
    background: var(--primary);
    color: var(--white);
    text-align: left;
    font-weight: bold;
    padding: 2rem;
    margin-left: .5rem;
    margin-right: .5rem;
    border: none;
    cursor: pointer;
    flex: 1;
    transition: opacity 0.3s ease;
    writing-mode: vertical-rl;
    white-space: nowrap;
    border-radius: .5rem;
    height: 33rem;
    font-size: 1.2rem;
}
.tab-btn p{
    font-size: 1.2rem;
}
.tab-btn>strong{
    writing-mode: initial;
    color: var(--white);
}
.tab-btn.active {
    background: #002266;
    writing-mode: unset;
}
.tab-content {
    display: none;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1.5s ease, opacity 1.5s ease;
}
.tab-content.active {
    display: block;
    margin-left: .5rem;
    margin-right: .5rem;
    opacity: 1;
}
.big-tab {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
}

.recycling{
    background: var(--gradient1);
}
.recycling .card {
    border-radius: 1rem;
    border: 1px solid var(--white);
    background: transparent;
    box-shadow: none;
    text-align: left;
    height: 100%;
}
.recycling h5 {
    font-size: 1.25rem;
}
.recycling .card img {
    width: 100%;
    border-radius: 1rem;
}
.recycling p{
    color: var(--white);
}
.message .chairman-message{
    /* background: var(--secondary); */
    color: var(--white);
    border-radius: 1rem;
    padding: 2rem 1rem;
    border: 1px solid var(--white);
}
.message .chairman-message h4{
    margin-bottom: 1rem;
}
.video{
    position: relative;
}
.testimonial .card {
    min-height: 13rem;
    padding: 3rem 1rem 1rem 1rem;
    height: 100%;
    position: relative;
}
.testimonial .card img {
    position: absolute;
    width: 3.5rem;
    top: -8%;
    left: 8%;
}
.testimonial .card-body{
    padding: 1rem;
    min-height: 10rem;
    height: 100%;
}
#contact {
    background: var(--gradient2);

}

.contact h1 {
    color: var(--primary);
    padding-bottom: 1rem;
}
.contact label {
    color: var(--grey);
}
.contact p span {
    color:  var(--primary);
    font-weight: bold;
}


/*************** End Home Page ***************/

/*************** start Common CSS ***************/






/*************** End Common CSS ***************/

/*************** About Page ***************/
.about-page .values {
    background: linear-gradient(#2825608F, #2825608F),url(/images/about/value-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 900px;
    height: 100%;
    /* padding: 5rem 0; */
    position: relative;
    align-items: end;
}
.about-page .about-banner .banner{
    align-items: center;
}
.about-page p, .about-page h5.card-title {
    color: var(--white);
    font-size: 1rem;
}
.vision, .mission {
    position: relative;
    color: var(--white);
}
.vision p, .mission p{
    margin-bottom: 0;
    font-size: 1.35rem;
}
.vision .overlay, .mission .overlay{

    top: 30%;
    left: 55%;
    text-align: left;
}
.vision img, .mission img{
    opacity: .4;
}

.values .card {
    background: #0027966B;
    margin: 1rem;
    box-shadow: none;
    text-align: center;
    opacity: 1;
    border: none;
}
.leaders .card, .team .card{
    background: var(--secondary);
    margin: 1rem;
    box-shadow: none;
    text-align: left;
}
.leaders .card .card-img-top, .team .card .card-img-top {
    height: 20rem;
    object-fit: fill;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.team{
    background: #232933;
}
/*************** End About Page ***************/


/*************** Sustainability Page ***************/
.efp-left{
    position: relative;
}
.efp-left img{
    opacity: .5;
    border-radius: .5rem;
}
.efp-left .overlay {
    background: #04348BBA;
    padding: 1rem;
    max-width: 90%;
    border-radius: 1rem;
    top: 57%;
}
.efp-left .overlay p, .efp-button h6{
    font-size: 1.35rem;
}
.efp-button{
    border: none;
    border-radius: .5rem;
    padding: .5rem 1rem;
    text-align: left;
}
.efp-button.active {
    border: none;
    background: var(--secondary);
    border-radius: .5rem;
    padding: .5rem 1rem;
    text-align: left;
}
.efp-button.active h6{
    font-size: 2rem;
    margin-bottom: 0;
}
.stats .card {
    margin: 1rem;
    padding: 1rem 0rem;
    box-shadow: none;
    text-align: left;
    border: none;
    height: 13rem;
}
.stats .card img{
    max-width: 3.5rem;
}

.gallery img {
    width: 100%;
    height: -webkit-fill-available;
    margin-bottom: 1.5rem;
}
/*************** End Sustainability Page ***************/
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    height: fit-content;
}
.future{
    background: var(--gradient1);
    padding: 1rem;
}
.comply .card{
    background: var(--gradient2);
    width: -webkit-fill-available;
    margin: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: none;
    text-align: center;   
}
.comply .card h5{
    color: var(--primary);
}
.timeline, .timeline .carousel-item{
    position: relative;
}
.timeline img{
    opacity: .4;
    border-radius: 1rem;
}
.process{
    position: relative;
}
.process .card {
    border: none;
}
.process .card p{
    color: var(--white);
    font-size: 1.75rem;
}
.process img {
    opacity: .8;
}
.process-content {
    position: relative;

}
.process .card .card-header {
    color: var(--white);
    background: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 1rem 1rem 0rem 0rem;
    margin: 0;
}
.process .overlay{
    background: #000F2A70;
    border-radius: 1rem;
    padding: .5rem;
    width: 97%;
    height: 90%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}
.process .toggle-icon{
    opacity: 1;
    width: 1.5rem;
}
.process .toggle-icon.active{
    transform: rotate(90deg); /* Same as -30deg */
}
.process .process-title{
    display: flex;
    justify-content: space-between;
}
/*************** Contact Page ***************/
.yard-btn {
    background: var(--gradient2);
    border: none;
    font-weight: 600;
    color: var(--primary);
    padding: .25rem 1.5rem;
    width: fit-content;
    border-radius: 2rem;
    margin: .5rem;
}

.yard-btn:hover, .yard-btn.active {
    background: var(--gradient1);
    border: none;
    color: var(--white);
}
.yard-address p, .yard .map {
    display: none;
}
.yard-address p.active, .map.active {
    display: block;
}
.toggle-btn-area {
    width: fit-content;
    background: var(--gradient1);
    border-radius: 2rem;
    margin-bottom: 2rem;
    padding: .75rem .75rem;
}
.toggle-button {
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 2rem;
    border: none;
}
.toggle-button.active {
    background: var(--secondary);
    color: var(--white);
}
 .toggle-button:hover {
    color: var(--white);
}
.address img, .yard img{
    opacity: .4;
    border-radius: .5rem 0rem 0rem .5rem;
}
.map {
    width: 100%;
    height: 100%;
    border-radius: 0rem .5rem .5rem 0rem;
    margin-bottom: .5rem;
}

.content {
    background: url(/frontend/images/contact-img.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    position: relative;
}

.contact_form_div {
    background: var(--primary);
    padding: 2rem;
    border-radius: .5rem;
}
.contact_form h2{
    color: var(--secodery);
}
.contact_form p{
    color: var(--grey);
    font-size: .85rem;
}
.contact_form {
    background: var(--white);
    color: var(--black);
    display: flex;
    flex-flow: column;
    width: 100%;
    align-self: flex-end;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-details p {
    font-size: .8rem
}
.contact_form  .form-control{
    border-radius: .5rem;
}
.submit_btn {
    background: var(--gradient1);
    color: var(--white);
    padding: .5rem 1rem .5rem 1.5rem;
    border-radius: .5rem;
}
.submit_btn:hover {
    color: var(--white);
}
/*************** End Contact Page ***************/

/*************** Footer CSS ***************/

.footer-div {
    background: linear-gradient(180deg, #091242 0%, #091D89 47.51%, #091242 100%);
    padding: 2rem .5rem;

}

.quick-links {
    display: flex;
    flex-flow: column;
    float: right;
}
.quick-links a{
    margin-bottom: .35rem;
}
.footer p{
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}
.footer .social img{
    width: 3rem;
}
.footer a {
    color: #ffffff;
    font-size: .85rem;
    text-align: left;
    text-decoration: none;
}
.footer .contact-info img{
    width: 1.12rem;
    margin-right: .25rem;
}

.copy-right p{
    font-size: .85rem;
    color: var(--white);
    font-weight: 400;
    padding-top: 1rem;
}



/*************** Footer CSS ***************/

/*************** Responsive CSS ***************/

@media screen and (max-width:1600px) {
    .process .card p {
        font-size: 1.55rem;
    }
}

@media screen and (max-width:1440px) {
    .process .card p {
        font-size: 1.35rem;
    }
    .home .sustainability .card p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1366px) {
    .nav-item {
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.1rem 0.3rem;
    }
    .info h6>strong {
        font-size: 1.75rem;
    }
    
}

@media screen and (max-width: 1200px) {
    .nav-item {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-item .active::before {
        bottom: 0.6rem;
    }

    .process .card p {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 1024px) {

    .nav-item {
        font-size: 1rem;
    }

    .nav-link {
        display: block;
    }
    .process .card p {
        font-size: 1rem;
    }
    .info h6>strong {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 991px) {
    h1, h1>span {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    p, span {
        font-size: 1rem;
    }

    .padding-top {
        padding-top: 3rem;
    }

    .padding-bottom {
        padding-bottom: 3rem;
    }

    .dropdown:hover>.dropdown-menu {
        text-align: left;
    }
    #topbar-menu {
        height: 100vh;
        margin-left: auto;
        margin-top: .5rem;
        background:transparent;
    }
    .navigation {
        background: transparent;
        padding: 0;
    }
    .mobile-nav {
        background: var(--gradient1);
        border-radius: .8rem;
        padding: 1rem !important;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 1rem;
        text-align: left;
        border-bottom: 1px solid var(--white);
        padding: 1rem 1rem !important;
        border-radius: .5rem;
        margin: .5rem 0;
    }
    .navbar {
        background: transparent
    }
    .navbar-light .navbar-nav .nav-link {
        color: var(--white);
    }
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--white);
    }
    .navbar-nav {
        position: relative;
        left: 0;
        right: 0;
        padding: 0;
        height: 100vh;
        top: 0;
        background: transparent;
        display: unset;
    }

    .nav-item {
        color: var(--white);
        font-size: 1rem;
        /* border-bottom: 1px solid #000; */
    }
    .banner h1, .banner span {
        font-size: 2rem;
    }
    .quick-links {
        float: left;
    }
}

@media screen and (max-width: 768px) {
    .col-form-label {
        text-align: left;
    }

    :not(.input-group)>.bootstrap-select.form-control:not([class*=col-]) {
        width: 100%;
    }
    .map {
        height: 300px;
    }
    .info h6>strong {
        font-size: 1.75rem;
    }
    .info h6 {
        min-height: 4rem;
    }
    .infos .card-body {
        padding: 1rem 1rem 0rem 1rem;
    }
    .image-stack .about-img, .image-stack-2 .about-img{
        height: auto !important;
    }
    .home .about p {
        font-size: 1.1rem;
    }
    .item.slick-slide img{
        height: 450px;
        width: 100%;
        border-radius: .5rem;
    }
    .item.slick-slide {
        width: 600px;
        height: 500px !important;
        transition: transform 0.4s ease;
        position: relative;
    }

    /* Right-side slide (immediately after center) */
    .item.slick-slide.slick-center + .slick-slide {
        transform: scale(0.75) translateX(-450px);
    }

    /* Left-side slide */
    .item.slick-slide.slick-active {
        transform: scale(0.75) translateX(450px);
    }

    /* Center slide */
    .item.slick-slide.slick-center {
        transform: scale(1) translateX(0);
        z-index: 30;
    }
    .efp-left .overlay {
        background: #04348BBA;
        padding: 1rem;
        max-width: 90%;
        border-radius: 1rem;
        top: 60%;
    }
    .why-features {
        padding: 0rem 0rem 0rem 6rem;
    }
    .tab-btn {
        writing-mode: initial;
        white-space: normal;
        height: auto;
        font-size: 1rem;
        width: 100%;
        margin: .5rem 0rem;
    }
    .home .sustainability .card {
        max-width: 100%;
        height: 18rem;
    }
    .tab-content.active {
        display: block;
        margin-left: 0rem;
        margin-right: 0rem;
    }
    .vision .overlay, .mission .overlay {
        top: 35%;
        left: 50%;
        width: 85%;
    }
    .process img {
        height: 42vh;
    }
    .process .toggle-icon{
        height: auto;
    }
    .vision p, .mission p {
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    .gallery img {
        height: auto;
    }
}

@media screen and (max-width: 500px) {
    h1, h1>span {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h6 {
        font-size: .85rem;
    }
    .overlay {
        padding: 0 .5rem;
    }
    .why-features {
        padding: 0rem 0rem 0rem 0rem;
    }
    .banner h1, .banner span {
        font-size: 1.5rem;
    }
    .banner img{
        opacity: .4;
    }
    .slick-next {
        right: 6vw;
    }
    .slick-prev {
        left: 6vw;
    }
    .wrap {
        padding: 0px 16px;
    }
    .home .sustainability .card {
        height: fit-content;
    }
    .tab-btn p {
        font-size: 1rem;
    }
    .banner img.img-fluid {
        height: 27vh;
        /* object-fit: cover; */
    }
    .infos .card-body {
        padding: 1rem 1rem 0rem 1rem;
    }
    .item.slick-slide img{
        height: 270px;
        width: 100%;
        border-radius: .5rem;
    }
    .item.slick-slide {
        width: 350px;
        height: 320px !important;
        transition: transform 0.4s ease;
        position: relative;
    }

    /* Slide immediately after center (right side) */
    .item.slick-slide.slick-center + .slick-slide {
        transform: scale(0.75) translateX(-262.5px); /* Negative because it's on the right */
    }

    /* All active slides — including the left one */
    .item.slick-slide.slick-active {
        transform: scale(0.75) translateX(262.5px);  /* Positive shift to the right */
    }

    /* Center slide */
    .item.slick-slide.slick-center {
        transform: scale(1) translateX(0);
        z-index: 30;
    }
    .vision img, .mission img {
        opacity: 1;
        border-radius: .5rem;
    }
    .vision p, .mission p {
        font-size: 1rem;
    }
    .nav-img {
        width: 12rem;
    }
    .efp-left .overlay {
        padding: 1rem .5rem;
        top: 50%;
    }
    .efp-left .overlay p{
        margin-bottom: 0;
    }
    .efp-left .overlay p, .efp-button h6{
        font-size: 1rem;
    }
    .process img{
        height: auto;
        opacity: 1;
    }
    .process .overlay {
        transform: translate(0%, 0%);
        position: unset;
        background: #000f2ac4;
        border-radius: 0rem 0rem 1rem 1rem;
        padding: 1rem;
        width: 100%;
        height: fit-content;
    }
    .vision, .mission {
        padding: 0;
    }
    .vision .overlay, .mission .overlay {
        transform: translate(2%, 0%);
        position: unset;

    }
    .about-page .values {
        padding-top: 2rem;
    }
    .leaders .card, .team .card {
        margin: 1rem 0;
    }
    .leaders .card .card-img-top, .team .card .card-img-top {
        height: 16rem;
    }
    .efp-button.active h6 {
        font-size: 1.25rem;
    }
    .efp-left img {
        opacity: 1;
        border-radius: .5rem;
        height: 44vh;
    }
}
@media screen and (max-width: 375px) {

    .item.slick-slide img{
        height: 220px;
        width: 100%;
        border-radius: .5rem;
    }
    .item.slick-slide {
        width: 275px;
        height: 270px !important;
        transition: transform 0.4s ease;
        position: relative;
    }

    /* Slide immediately after center (right side) */
    .item.slick-slide.slick-center + .slick-slide {
        transform: scale(0.75) translateX(-206.5px); /* Negative because it's on the right */
    }

    /* All active slides — including the left one */
    .item.slick-slide.slick-active {
        transform: scale(0.75) translateX(206.5px);  /* Positive shift to the right */
    }

    /* Center slide */
    .item.slick-slide.slick-center {
        transform: scale(1) translateX(0);
        z-index: 30;
    }
    /* .process img {
        height: 90vh;
    } */
    .process .card .card-header {
        padding: 1rem 1rem;
    }
    .efp-left img {
        height: 50vh;
    }
}
@media screen and (max-width: 320px) {

    /* .process img {
        height: 108vh;
    } */
}

/*************** End Responsive CSS ***************/


/*************** Animation ***************/

/***** Global Slide *****/
.slide-right,
.slide-left {
    width: 100%;
}

/***** Slide Right *****/
.slide-right {
    animation: 1s slide-right;
}

@keyframes slide-right {
    from {
        margin-left: -100%;
    }

    to {
        margin-left: 0%;
    }
}

/***** Slide Left *****/
.slide-left {
    animation: 1s slide-left  ease;
    position: relative;
}

@keyframes slide-left {
    from {
        margin-left: 50%;
    }

    to {
        margin-left: 0%;
    }
}

/***** Container Styles *****/
/* .key-features {
    position: relative; 
    overflow: hidden;   
     min-height: 23rem;
     height: 100%;
}

.image-container {
    position: relative;
    overflow: hidden;
   
} */

/***** Slide Top *****/
.slide-top {
    animation: slide-top 1s ease forwards;
    position: relative;
}

@keyframes slide-top {
    from {
        top: 100%; /* Start from the bottom of the container */
    }
    to {
        top: 0; /* Move to the original position */
    }
}

/***** FadeIn Underline *****/

.fade-in {
    animation: fadeIn ease 1.5s;
}

@keyframes fadeIn {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 1;
    }
}
.fade{
    transition: opacity .5s linear;
  }

/*************** End Animation ***************/