/* FONT IMPORT */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */
@font-face {
    font-family: "against";
    src: url("../fonts/against.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #EABB1D;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Jost", sans-serif;

}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4 {
    font-family: "against";
}

h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: var(--primary);
}

/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: #1E1F1F;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 20px;
    line-height: normal;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #1E1F1F;
    padding: 1.04em 2em;
}

.slideOne .btn-group {
    gap: 1.125rem;
}

/* !GLOBAL CSS */


/* mouse animation css  */


/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */


/* mouse animation css  */


/* NAV HEADER CSS */

header {

    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1058px;
    margin: 0 42px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    width: fit-content;
    left: 3rem;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    background: rgb(0 0 0 / 20%);
}

.homeSlider .swiper-pagination-bullet-active {
    background: #DFAA04;
    position: relative;
    height: 0.875rem;
    width: 0.875rem;
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 20px 0;
    color: #1E1F1F;
    font-size: 70px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
}

.main-slider p {
    color: #414141;
    font-weight: 400;
    line-height: 1.6;
    font-size: 34px;
    width: 89%;
    margin: 0 auto 1.125rem;
}

.slideOne h3 {
    font-size: 30px;
    font-weight: 500;
    color: #EABB1D;
    text-transform: uppercase;
    font-family: 'Jost';
}

.slideOne {
    text-align: center;
}

.slideOne h4 {
    font-size: 21px;
    font-weight: bold;
    font-family: 'Jost';
    color: #424037;
    text-transform: uppercase;
    margin-top: 40px;
}



/* !MAIN HERO SLIDER CSS */

.mainHead {
    font-size: 46px;
    font-weight: 400;
    text-transform: uppercase;
    color: #1E1F1F;
}

.subHead {
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary);
    font-family: "Jost", sans-serif;
    margin-bottom: 0.875rem;
}


/* section1 */
.features-banner-section .features-wrapper {
    background-color: #eab400;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 47px 103px;
    margin: 0 3rem;
}

.features-banner-section .feature-block {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    /* padding: 10px; */
    border-radius: 8px;
}

.features-banner-section .feature-block:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.features-banner-section .icon-box img {
    max-width: 45px;
    height: auto;
    display: block;
    object-fit: contain;
}

.features-banner-section .feature-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: 'Jost';
}

@media (max-width: 991px) {
    .features-banner-section .feature-block {
        justify-content: flex-start !important;
        padding-left: 10%;
    }
}

@media (max-width: 575px) {
    .features-banner-section .feature-block {
        padding-left: 15px;
    }
}

.features-banner-section {
    padding: 17px 0;
}

/* section1 */


/* section2 */
.company-overview-section {
    background-color: #ffffff;
}


.company-overview-section .lead {
    font-size: 20px;
    color: #3B3A35;
    font-weight: 600;
    width: 90%;
    line-height: 1.4;
    margin-top: 1.75rem;
}

.company-overview-section p {
    line-height: 1.6;
    font-size: 1.125rem;
    font-weight: 400;
    color: #707070;
}

.company-overview-section .mission-box {
    background-color: #F4F4F4;
    border-radius: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 42px 40px;
}

.company-overview-section .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.company-overview-section .mission-box h4 {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    font-family: 'Jost';
}

.company-overview-section .mission-box h4 span {
    color: #000;
    font-size: 1.5rem;
    line-height: 1;
}

.company-overview-section .image-wrapper {
    border-radius: 20px;
}

.company-overview-section .image-hover-zoom {
    transition: transform 0.5s ease;
}

.company-overview-section .image-wrapper:hover .image-hover-zoom {
    transform: scale(1.05);
}

/* section2 */


/* section4 */
.strategic-initiatives-section p {
    font-size: 1.25rem;
    font-weight: 500;
    color: #707070;
}



.strategic-initiatives-section .init-number {
    width: 80px;
    height: 80px;
    font-size: 31px;
    background-color: #EABB1D;
    color: #001734;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.strategic-initiatives-section .init-list li {
    transition: all 0.3s ease;
    cursor: default;
    margin-bottom: 40px;
}

.strategic-initiatives-section .init-list li:hover .init-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 10px rgba(213, 181, 42, 0.4);
}

.strategic-initiatives-section .init-text {
    font-size: 26px;
    color: #050505;
    transition: color 0.3s ease;
    font-weight: 500;
    font-family: 'Jost';
}

.strategic-initiatives-section .init-list li:hover .init-text {
    color: #d5b52a;
}

.strategic-initiatives-section .themeBtn:hover {
    background-color: #222;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.strategic-initiatives-section .rounded-custom {
    border-radius: 20px !important;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.strategic-initiatives-section .rounded-custom:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

section.strategic-initiatives-section a.themeBtn.borderBtn {
    padding: 1rem 1.5rem;
}

/* section4 */


/* section3 */
/* Custom CSS for Modernization Section */
.modernization-section {
    background: url(../images/probbg.webp)center/cover no-repeat;
    border-radius: 30px;
    /* padding: 70px 176px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 39px;
}

.modernization-section .inner-container {
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}

.modernization-section .modernization-subtitle {
    /* color: #dfb100; */
    /* font-size: 13px; */
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
    /* font-weight: 600; */
    /* font-family: 'Arial', sans-serif; */
}

.modernization-section .modernization-title {
    /* font-size: 42px; */
    /* line-height: 1.3; */
    /* letter-spacing: 1.5px; */
    /* font-weight: 400; */
}

.modernization-section .column-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Jost';
}

.modernization-section .modernization-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 25px 30px 25px 50px;
    transition: 0.5s ease;
    cursor: pointer;
    height: 100%;
    min-height: 115px;
}

/* Yellow Hover Effect Required by User */
.modernization-section .modernization-card:hover,
.modernization-section .modernization-card.active {
    background-color: #dfb100;
    transform: scale(0.98);
}

.modernization-section .modernization-card .card-title {
    font-size: 25px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
    font-family: 'Jost';
}

.modernization-section .modernization-card .card-desc {
    font-size: 20px;
    color: #707070;
    line-height: 1.5;
    font-family: 'Jost';
    font-weight: 500;
    width: 91%;
}

/* Adjust text color on hover for better contrast if needed, though black looks fine on yellow */
.modernization-section .modernization-card:hover .card-desc,
.modernization-section .modernization-card.active .card-desc {
    color: #333333;
}

.modernization-section .icon-wrap img {
    max-width: fit-content;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .modernization-section {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .modernization-section .modernization-title {
        font-size: 32px;
    }

    .modernization-section .modernization-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .modernization-section .icon-wrap {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

.modernization-section .mainHead {
    line-height: 1.7;
}

/* section3 */


/* section5 */

.leadership-sct {
    background-color: #f5f5f5;
    padding: 90px 0;
}



.leadership-sct .member-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.leadership-sct .member-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.leadership-sct .img-box {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.leadership-sct .img-box img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.leadership-sct .member-card:hover .img-box img {
    transform: scale(1.08);
}

.leadership-sct .info-box {
    padding: 35px 25px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.leadership-sct .member-name {
    font-size: 26px;
    font-weight: 400;
    color: #000;
    /* margin-bottom: 0; */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.leadership-sct .member-card:hover .member-name {
    color: #e3bc55;
}

.leadership-sct .member-role {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}

.leadership-sct .member-desc {
    font-size: 20px;
    color: #45474A;
    line-height: 1.5;
    margin-bottom: 0;
}

/* section5 */


/* section6 */
.ventures-portfolio-section {
    background-color: #ffffff;
    padding: 80px 0;
}



.portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    border-top: 4px solid #dfb944;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 3rem 1.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(223, 185, 68, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-top-color: #cda430;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card>* {
    position: relative;
    z-index: 1;
}

.icon-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #fafafa;
    border: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-card:hover .icon-box {
    border-color: #dfb944;
    box-shadow: 0 0 20px rgba(223, 185, 68, 0.15);
    background-color: #ffffff;
}

.portfolio-card:hover .icon-box img {
    transform: scale(1.08);
}

.icon-box img {
    /* max-width: 45px; */
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-heading {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    /* letter-spacing: 0.5px; */
    text-transform: uppercase;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 5px;
}

.portfolio-card:hover .card-heading {
    color: #dfb944;
}

.card-description {
    font-size: 20px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .ventures-portfolio-section {
        padding: 60px 0;
    }

    .portfolio-title {
        font-size: 1.8rem;
    }

    .portfolio-card {
        padding: 2.5rem 1.5rem;
    }
}

/* section6 */


/* section7 */
.contact-form-section {
    background-color: #1e1f21;
    border-radius: 40px;
    margin: 0 45px 3.75rem 45px;
}

.contact-wrapper .description {
    color: #707070;
    font-size: 20px;
}

.custom-input {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid #FFF6F6;
    border-radius: 0;
    color: #A1A1A1 !important;
    padding: 10px 0;
    font-size: 22px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #f1c40f;
}

.custom-input::placeholder {
    color: #7a7a7a;
}

textarea.custom-input {
    resize: none;
}

.submit-btn {
    background-color: #f1c40f;
    color: #000000;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 14px 35px;
    border-radius: 8px;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ffffff;
    color: #1e1f21;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

/* section7 */


/* footer  */
.site-footer {
    /* border-radius: 40px 40px 0 0; */
    margin: 0 45px 33px 45px;
}

.cta-section {
    position: relative;
    padding: 180px 0 250px;
    background-image: url('../images/footerbg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 40px 40px 0 0;
}

.cta-section::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 100%); */
    z-index: 0;
}

.cta-section .z-index-1 {
    z-index: 1;
}

.cta-title {
    font-size: 70px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 1px;
}

.cta-btn {
    background-color: #f1c40f;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    margin-top: 15px;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #d4ac0d;
    color: #000000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.footer-bottom {
    background-color: #000;
    color: #ffffff;
    padding: 40px 0 100px;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-desc {
    font-size: 1.125rem;
    color: #E0DEDE;
    line-height: 1.66;
    width: 88%;
}

.footer-heading {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #ffffff;
    font-family: 'Jost';
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #E0DEDE;
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 2.8rem;
    }

    .cta-section {
        padding: 120px 0 180px;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-section {
        padding: 100px 0 120px;
    }
}

.main-arrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 4rem;
    flex-direction: column-reverse;
    top: 0;
    bottom: 0;
    justify-content: center;
}

.main-arrow i {
    color: var(--black);
    font-size: 1.75rem;
}

.main-arrow span {
    writing-mode: sideways-lr;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet-active::before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    border: 1px solid var(--black);
    left: -5px;
    top: -5px;
    border-radius: 50px;
}


/* footer  */


/* Briefing Sec Css Start */

.briefing-sec {
    background: url(../images/bgimg.webp)center/cover fixed;
    height: 850px;
    display: flex;
    align-items: end;
    z-index: 1;
}

.briefing-content h2,
.briefing-content p {
    color: var(--white);
    text-align: end;
}


.briefing-content p {
    line-height: 1.6;
    width: 90%;
    margin: 1rem 0 2rem auto;
}

.briefing-content .themeBtn {
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
}

.briefing-sec::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(174deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 70%));
}

/* Briefing Sec Css End */


/* Brand Sec Css Start */

section.brand-sec {
    background-color: #EABB1D;
    padding: 3rem 0 3rem 0;
    border-radius: 30px;
    margin: 1rem 45px 0 45px;
}

.brand-flex {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.brand-flex h4 {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    font-family: 'Jost';
    white-space: nowrap;
}

.brand-img img {
    height: 70px;
    width: 70px;
    object-fit: cover;
}

.brand-img {
    flex-shrink: 0;
}

.gelatine {
    animation: gelatine 0.9s infinite;
}

@keyframes gelatine {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

/* Brand Sec Css End */



/* Menu Css Start */


/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    /* 👈 default hidden */
    width: 100%;
    height: 100%;
    background: #111;
    padding: 60px 30px 60px 60px;
    transition: 0.6s ease;
    z-index: 999;
    display: flex;
    align-items: center;
}

/* ACTIVE STATE */
.sidebar.active {
    left: 0;
    /* 👈 show */
}

/* MENU LIST */
.sidebar ul {}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 40px;
    transition: 0.3s;
    font-family: 'against';
}

.sidebar ul li a:hover {
    color: #f1c40f;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* HAMBURGER */
.menu-btn {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    text-align: end;
}

.menu-btn span {
    position: absolute;
    width: 70%;
    height: 3px;
    background: #000;
    left: unset;
    transition: 0.4s;
    right: 0;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 9px;
    width: 100%;
}

.menu-btn span:nth-child(3) {
    bottom: 0;
}

/* HAMBURGER → CROSS */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}


.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-wrapper p {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1E1F1F;
    text-transform: uppercase;
    margin: 0;
}

.form-inline {
    margin-left: 2rem;
}





/* Menu Css End */

/* Hover Effect Css Start */

.themeBtn::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.6s ease;
    background-color: var(--black) !important;
    color: var(--white) !important;
    left: 0;
    right: 0;
    z-index: -1;
}

.themeBtn:hover::before {
    width: 100%;
}

.themeBtn:hover {
    color: var(--white);
    border-color: var(--black) !important;
}

.briefing-content .themeBtn:hover {
    color: var(--black) !important;
}

.briefing-content .themeBtn::before {
    background-color: var(--white) !important;
}

.contact-form button::before {
    background-color: var(--white) !important;
}

.contact-form button:hover {
    color: var(--black) !important;
}

.footer-links a::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--primary);
    bottom: -2px;
    transition: 0.5s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary);
}

.strategic-initiatives-section .mainHead {
    white-space: nowrap;
}

.site-footer .themeBtn::before {
    background-color: var(--white) !important;
}

.site-footer .themeBtn:hover {
    color: var(--black) !important;
}

/* Hover Effect Css End */
@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
        /* 👉 right */
    }

    100% {
        transform: translateX(0);
    }
}

/* APPLY */
.float-x {
    animation: floatLeftRight 3s ease-in-out infinite;
}