/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Inter:wght@100..900&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff5c31;
    --secondary: #1d2eec;
    --heading-font: "Archivo Narrow", sans-serif;
    --text-font: "Inter", sans-serif;
}

::selection {
    background-color: var(--secondary);
    color: var(--white);
}

/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: var(--text-font);
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
}

a,
button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
    cursor: pointer;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75;
    color: #00000090;
}

section {
    position: relative;
    /*padding: 6rem 0;*/
    overflow: clip;
}

/* Lenis */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Cursor */
.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;
}

/* Card Hover Cursor */
.card-cursor-hover {
    position: relative;
    z-index: 100;
    width: 0px;
    height: 0px;
    border-radius: 0;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    opacity: 0;
}

.card-cursor-hover-hover2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    opacity: 1;
    width: 70px;
    height: 70px;
    box-shadow: 0px 0px 15px rgba(37, 143, 103, 0.07);
}

.card-cursor-hover-hover2:after {
    content: "\f062";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: var(--white);
    font-size: 25px;
    transform: rotate(45deg);
}

/* Preloader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
}

.preLoader.black {
    background-color: var(--secondary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

.preLoader img {
    width: 500px;
    filter: brightness(0) invert(1);
}

/* Search Popup */
.searchPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
    transform: translate(0, -100%) scale(0, 0);
    opacity: 0;
    z-index: 999999;
}

.searchPopup.open {
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
}

.searchPopup input[type="search"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    color: var(--white);
    background: #414141bd;
    font-size: 3.125rem;
    line-height: 65px;
    text-align: center;
    border: none;
    padding: 0 1.875rem;
    outline: none;
}

.searchPopup .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: var(--white);
    opacity: 1;
    padding: 0.75rem 1.25rem;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* ThemeBtn */
.themeBtn {
    width: fit-content;
    display: block;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding: 0.75rem 2.5rem;
    transition: all 0.5s ease-in-out;
    border: 2px solid transparent;
    overflow: hidden;
}

.themeBtn--secondary {
    background: var(--secondary);
}

.themeBtn--border {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--secondary);
}

.themeBtn:hover {
    background: var(--black);
    color: var(--white);
    box-shadow: 8px 8px var(--secondary);
}

.themeBtn--secondary:hover {
    box-shadow: 8px 8px var(--white);
}

.themeBtn--border:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 8px 8px var(--black);
}

/* Headings */
.heading {
    font-size: 4.0625rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
    line-height: 1.05;
    overflow: hidden;
}

.heading .char {
    display: inline !important;
}

.heading-sm {
    font-size: 2.375rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
    line-height: 1.2;
}

.subHeading {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

/* Header */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1.5rem 0;
    transition: 0.3s ease-in-out;
}

.header-main__logo {
    width: 145px;
}

.header-main__logo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-main__nav li a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.35rem 0.25rem;
    margin: 0 1rem;
    text-transform: uppercase;
}

.header-main__nav li a:hover {
    color: var(--primary);
}

.header-main__btn {
    gap: 1rem;
}

.header-main__btn a:first-child {
    font-size: 1.25rem;
    background: var(--secondary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    padding: 0 1rem;
}

/* Banner */
.banner {
    height: 1080px;
    padding: 0;
}

.pagetitle {
    height: 600px;
}

.bannerSlider .bannerImg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner h1 {
    font-family: var(--heading-font);
    font-size: 7.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin: 0;
}

.pagetitle h1 {
    font-size: 5rem;
}

.banner p {
    width: 80%;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-top: 1rem;
    padding-left: 7rem;
}

.banner p::before {
    content: "";
    width: 5rem;
    height: 1px;
    position: absolute;
    top: 20%;
    left: 0;
    background: var(--white);
    animation: lineAnim 2s infinite;
}

@keyframes lineAnim {
    0% {
        width: 5rem;
    }

    50% {
        width: 0;
    }

    100% {
        width: 5rem;
    }
}

.bannerImg__content .themeBtn {
    margin-left: 7rem;
}

/* Innovation */
.innovation-card__img {
    width: 100%;
    height: 275px;
    overflow: hidden;
}

.innovation-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.innovation-card__content .title {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin: 1rem 0 1.125rem;
    color: var(--black);
    transition: all 300ms ease-in-out;
}

.innovation-card__content .subTitle {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    padding-left: 60px;
}

.innovation-card__content .subTitle::before {
    content: "";
    width: 3.125rem;
    height: 1px;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
}

.innovation-card:hover .innovation-card__img img {
    transform: scale(1.1);
}

.innovation-card:hover .title {
    color: var(--primary);
}

/* Counters */
.counters__number+.counters__number {
    margin-top: 3rem;
}

.counters__number .number {
    font-family: var(--heading-font);
    font-size: 5rem;
    font-weight: 700;
    position: relative;
    padding-left: 6.25rem;
}

.counters__number .number::before {
    content: "";
    width: 5rem;
    height: 1px;
    background: #979797;
    position: absolute;
    top: 50%;
    left: 0;
}

.counters__number .subTitle {
    color: #979797;
    font-family: var(--heading-font);
    padding-left: 6.25rem;
}

/* Our Mission */
.mission {
    height: 700px;
    background: url(../images/mission-bg.jpg);
    display: flex;
    align-items: end;
    padding: 0;
    overflow: visible;
    z-index: 1;
}

.mission__content {
    background: var(--white);
    padding: 3rem;
    position: relative;
    bottom: -7rem;
}

.mission__content p {
    position: relative;
    font-weight: 400;
    line-height: 1.25;
    padding-left: 6.5rem;
    margin: 2rem 0;
}

.mission__content p::before {
    content: "";
    width: 5rem;
    height: 1px;
    background: #979797;
    position: absolute;
    top: 16%;
    left: 0;
}

.mission__content .themeBtn {
    margin-left: 6.5rem;
}

/* Our Team */
section.team {
    padding: 12rem 0 5rem;
}

.team--inner .col-md-4:nth-child(n+4) .team-card {
    margin-top: 2rem;
}

.team-card {
    width: 100%;
    height: 440px;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #00000090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.team-card__img {
    width: 100%;
    height: 100%;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__content {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding: 0 0 3rem 3rem;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.team-card__content .designation {
    font-family: var(--heading-font);
    font-size: 1.125rem;
    color: var(--primary);
}

.team-card__content .title {
    font-family: var(--heading-font);
    font-size: 1.5625rem;
    text-transform: uppercase;
    color: var(--white);
}

.team-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.team-card:hover .team-card__content {
    transform: translate(0);
}

/* Donate */
.donate {
    background: var(--primary);
}

.donate-card {
    height: 100%;
    background: var(--white);
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    transition: all 300ms ease-in-out;
}

.donate-card__icon img {
    width: 80px;
}

.donate-card__content .title {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--heading-font);
    transition: all 300ms ease-in-out;
}

.donate-card__content p {
    margin: 0;
    transition: all 300ms ease-in-out;
}

.donate-card:hover {
    background: var(--secondary);
}

.donate-card:hover :is(.title, p) {
    color: var(--white);
}

.donate-card:hover .donate-card__icon img {
    filter: brightness(0) invert(1);
}

/* Blogs */
.blogs-card__img {
    width: 100%;
    height: 317px;
    overflow: hidden;
}

.blogs-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.blogs-card__content .title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin: 1rem 0 0.25rem;
}

.blogs-card__content .title:hover {
    color: var(--primary);
}

.blogs-card__content p {
    color: #00000090;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blogs-card__content .date {
    font-family: var(--heading-font);
    color: #00000090;
}

.blogs-card:hover .blogs-card__img img {
    transform: scale(1.1);
}

/* Events */
.events-bg {
    transition: all 300ms ease-in-out;
    padding: 2rem 0;
    border-bottom: 1px solid #d7d7d7;
}

.events-bg:hover {
    background: var(--secondary);
}

.events-bg:hover :is(.subTitle, .subHeading, p) {
    color: var(--white);
}

.events-bg__content {
    padding-left: 3rem;
}

.events-bg__contentDate .subTitle {
    width: 40%;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--heading-font);
    color: var(--primary);
}

.events-bg__contentDate .subTitle:nth-child(2) {
    position: relative;
    padding-left: 4rem;
}

.events-bg__contentDate .subTitle:nth-child(2)::before {
    content: "";
    width: 3.125rem;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #d7d7d7;
}

/* Newsletter */
.newsletter {
    background: #f9f9f9;
}

.newsletter__contentForm {
    display: flex;
    gap: 1rem;
}

.newsletter__contentForm input {
    width: 100%;
    padding: 0 1rem;
    border: 1px solid #d7d7d7;
    background: #fff;
    outline: none;
    transition: all 300ms ease-in-out;
}

.newsletter__contentForm .themeBtn {
    width: 30%;
}

.newsletter__contentForm input:is(:hover, :focus) {
    border-color: var(--primary);
}

/* Footer */
.footer {
    background-color: #1d1d1d;
}

.footer-main {
    padding: 5rem 0;
}

.footer-main__links ul {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.footer-main__links ul li {
    display: flex;
    align-items: center;
}

.footer-main__links ul li i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-right: 1rem;
}

.footer-main__links ul li a {
    color: var(--white);
    font-size: 1.125rem;
    display: block;
}

.footer-main__links ul li a:hover {
    color: var(--primary);
}

.copyRight p {
    margin: 0;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin: 0;
    border-top: 1px solid #545454;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    right: -5rem;
    bottom: 2rem;
    width: 2.75rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background-color: var(--primary);
    color: var(--white);
    z-index: 99;
    transition: all 0.5s ease, right 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    mix-blend-mode: difference;
}

.scroll-top.show {
    right: 2rem;
}

.scroll-top:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Sliders Styling */
:is(.innovationSlider, .teamSlider) {
    padding-bottom: 4rem;
}

:is(.innovationSlider, .teamSlider) .swiper-pagination {
    bottom: 0;
    left: 0;
    width: 100%;
}

:is(.innovationSlider, .teamSlider) .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

:is(.innovationSlider, .teamSlider) .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* About Us Page */
.about__img {
    height: 500px;
    position: relative;
}

.about__img::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    border: 2px solid var(--primary);
    z-index: -1;
}

.about__img img {
    border-radius: 1rem;
    object-fit: cover;
}

/* Contact Us */
.contact__img {
    height: 610px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.contact__img img {
    object-fit: cover;
}

.inputField {
    margin-top: 1.5rem;
}

.inputField :is(label, .forgetBtn) {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.inputField :is(input, textarea) {
    width: 100%;
    border: 1px solid #00000050;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    resize: none;
}

.inputField .themeBtn+label {
    margin: 1rem 0;
    text-align: center;
}

/* Text Document */
.textDocument .heading {
    font-size: 3rem;
}

.textDocument ul {
    margin: 0 0 1rem 1.25rem;
}

.textDocument ul li {
    color: #00000090;
    list-style: disc !important;
}

.connect-stripe {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    padding: 2rem;
    background: rgb(255 255 255 / 20%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.connect-stripe h4 {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.disabled {
    pointer-events: none;  /* Prevents any interaction (clicks, hovers, etc.) */
    opacity: 0.6;          /* Makes the element appear visually disabled */
    cursor: not-allowed;   /* Changes the cursor to a 'not-allowed' symbol */
}

div#loom-companion-mv3 {
    display: none;

.product-card {
    margin-bottom: 4rem !important;
}
.product-section .row .col-lg-4:nth-last-child(-n+3) .product-card {
    margin-bottom: 0;
}
.product-card__img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.product-card__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin: 1rem 0 0;
    color: var(--black);
    transition: all 300ms ease-in-out;

