:root {
    --bs-border-color: #424242;
}

body {
    font-family: "Roboto", serif;
    font-size: 16px;
    font-weight: 200;
    line-height: normal;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
}

.container {
    max-width: 100%;
    width: 100%;
    padding: 0 150px;
}

.main {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    min-height: 100vh;
}

.headerSection {
    position: relative;
    flex-shrink: 0;
}

.contentSection {
    position: relative;
    flex-grow: 1;
}

.footerSection {
    position: relative;
    flex-shrink: 0;
}

.logoBox {
    width: 100px;
}

.mainMenu li a {
    font-weight: 300;
    font-size: 15px;
    text-transform: uppercase;
}

.btnGroupHead a {
    font-size: 18px;
    width: 120px;
    text-align: center;
    justify-content: center;
}

.fw-light {
    font-weight: 300;
}

.fw-medium {
    font-weight: 500;
}

.fw-semiBold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

/* Hero section */

.heroSection {
    position: relative;
    height: calc(100vh - 75px);
    min-height: 450px;
    width: 100%;
    overflow: hidden;
}

.heroSection video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.heroSectionContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.heroSectionContent p {
    font-size: 25px;
    font-weight: 300;
}

.aboutCol {
    padding: 64px 0;
}

.aboutContentLeft {
    padding-left: 150px;
    padding-right: 50px;
    max-width: 660px;
}

.aboutContent p {
    font-size: 26px;
    font-weight: 100;
    letter-spacing: 2px;
    line-height: 41px;
}

.aboutContentRight {
    padding-right: 50px;
    padding-left: 150px;
    max-width: 660px;
    margin: 0 auto;
}

.titleCenter {
    text-align: center;
    font-size: 60px;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 50px;
}

.sectionWrap {
    padding: 50px 0;
}

.nextPrevBtn {
    margin: 50px 0;
}

.slideCard {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    aspect-ratio: 5/6;
}

.slideCard .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    transition: background 0.3s ease-in-out;
    z-index: 0;
}

.slideCard:hover .overlay {
    background: rgba(180, 134, 22, 0.75);
}

.slideCard .icon,
.slideCard h5,
.slideCard p {
    position: relative;
    z-index: 2;
}

.slideCard h5 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.slideCard p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}

.slideCard .icon {
    margin-bottom: 100px;
}

.slick-slide {
    margin: 0 16px;
}

.prevBtn img {
    transform: rotate(180deg);
}

.slick-disabled img {
    opacity: 0.5;
}

.logoImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card {
    background: none;
    perspective: 1000px;
    cursor: pointer;
    aspect-ratio: 21 / 35;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 10px;
}

.flip-card:hover .flip-card-front-content {
    z-index: 0;
}

.flip-card:hover .flip-card-back {
    z-index: 1;
}

.flip-card-front {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.flip-card-front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.flip-card-front-content::after {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.flip-card-back {
    background: radial-gradient( circle, rgba(18, 17, 17, 0.538) 0%, rgb(74, 72, 80) 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    color: white;
    padding: 20px;
}

.flip-card-front-content .title {
    font-size: 22px;
    font-weight: 100;
    text-align: left;
}

.card-title {
    font-size: 1.2rem;
    margin: 10px 0;
}

.card-text {
    line-height: 24px;
}

.font35 p,
.font35 {
    font-size: 23px;
    line-height: 45px;
    font-weight: 100;
    letter-spacing: 0px;
}

.missionValueCard {
    position: relative;
    width: 100%;
}

.missionValueCard-topImg {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: end;
}

.missionValueCard-topImg img {
    width: 100%;
    object-fit: cover;
}

.missionValueCard-content .title {
    font-size: 30px;
    font-weight: 200;
}

.missionValueCard-content .descp {
    font-weight: 200;
    opacity: 0.8;
    line-height: 24px;
}

.testimonialCard {
    background-color: #111;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonialCard:hover {
    box-shadow: 0px 4px 15px rgba(20, 20, 20, 0.2);
    background-color: #202020;
}

.testimonialCard img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonialCard p {
    font-size: 18px;
    opacity: 0.8;
    font-weight: 200;
    line-height: 26px;
}

.testimonialCard-footer {
    font-size: 16px;
    font-weight: 200;
    opacity: 0.8;
}

.cta-section {
    position: relative;
}

.ctaBg img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 550px;
}

.cta-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    font-size: 60px;
    font-weight: 200;
    max-width: 830px;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-get-started {
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.footer {
    background-color: #000;
    padding: 2rem 0;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer .social-icons a:hover {
    transform: scale(1.2);
    background-color: #f9c846;
    color: black;
}

.whyChooseSection .bgImg {
    max-height: 600px;
    height: 100%;
    width: 100%;
}

.whyChooseSection .bgImg img {
    border-radius: 70px 70px 0 0;
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: bottom;
}

.testimonialTopBg {
    max-height: 600px;
    height: 100%;
    width: 100%;
}

.testimonialTopBg img {
    border-radius: 70px 70px 0 0;
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}

.footer .links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.shadowBg {
    padding: 100px 0;
}

.shadowBg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60%;
    background-image: url(../images/shadow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.whychhoseCardTitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #fff;
}

/* FORM CSS */

.page-template-app-contact {
    position: relative;
    width: 100%;
}

.page-template-app-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/pageTop-bg.png) no-repeat top right;
    z-index: -1;
}

.page-template-app-contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1500px;
    background: url(../img/pageBtm-bg.png) no-repeat top center/cover;
    z-index: -1;
}

.page-template-app-contact .headerSection,
.page-template-app-contact .footerSection {
    display: none !important;
}

.page-template-app-contact .mainContentSection {
    padding: 50px 0;
}

.formSection {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    background: url(../img/formbg.png) no-repeat top center/cover;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0px 20px #2e2e2e;
}

.formContent {
    padding: 70px 70px;
}

.formBox {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.formBox::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, #585858, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    z-index: 0;
}

.formBox-content {
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.formBox-title {
    font-size: 16px;
}

.custom-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    color: white;
    padding: 0;
    outline: none;
}

.custom-input:focus {
    border-bottom: 1px solid #8c6a19;
}

.submit-btn {
    width: fit-content;
    margin: 0 auto;
    padding: 8px 24px
}

.file-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-file-upload {
    display: none;
    /* Hide default file input */
}

.upload-area {
    width: 100%;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.upload-area:hover {
    background: rgba(255, 255, 255, 0.1);
}

.upload-icon {
    font-size: 24px;
}

.codedropz-upload-handler {
    border: 1px solid #585858;
    border-radius: 8px;
}

.codedropz-upload-inner h3 {
    font-size: 20px;
    opacity: 0.7;
}

.cd-upload-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
}

.cd-upload-btn:hover {
    opacity: 1;
}

.dnd-upload-status .dnd-upload-details .remove-file span:after {
    filter: invert(1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Inverts the icon color */
    opacity: 1;
    /* Ensures visibility */
}

/* Collaboration css */

.page-template-collaboration-page .headerSection,
.page-template-collaboration-page .footerSection {
    display: none !important;
}

.collaborationPage {
    position: relative;
    width: 100%;
}

.collaborationPage .headerSection,
.collaborationPage .footerSection {
    display: none !important;
}

.collaborationSection {
    position: relative;
    width: 100%;
    padding: 24px 0;
}

.collaborationSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background: url(../img/collaboration-leftBg.png) no-repeat top left/contain;
    z-index: -1;
}

.headingHero {
    font-size: 80.711px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    /* 88.782px */
    letter-spacing: -2.69px;
}

.feature-box {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    padding: 24px 16px !important;
    height: 100%;
}

.feature-box-title {
    font-size: 20.192px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
}

@media only screen and (max-width: 1490px) {
    .container {
        padding: 0 16px;
    }
    .aboutContentLeft,
    .aboutContentRight {
        padding: 0 16px;
    }
}

/* smaller screen laptop */

@media only screen and (max-width: 992px) {}

/* Tablet mobile */

@media only screen and (max-width: 768px) {
    .aboutContent p {
        font-size: 22px;
        line-height: 46px;
    }
    .titleCenter,
    .cta-section h2 {
        font-size: 48px;
    }
    .nextPrevBtn {
        display: none !important;
    }
    .flip-card:hover .flip-card-inner {
        transform: none;
    }
    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }
    .formBox {
        padding: 24px 16px;
    }
    .formContent {
        padding: 70px 16px;
    }
    .headingHero {
        font-size: 48px;
    }
    .headingHero img {
        width: 125px;
    }
}

@media only screen and (max-width: 556px) {
    .heroSection video {
        width: 150%;
        object-fit: contain;
    }
    .heroSectionContent {
        width: 100%;
    }
    .heroSectionContent img {
        width: 180px;
        margin: 0 auto;
    }
    .heroSectionContent p {
        padding: 0 16px;
    }
    .heroSection {
        height: 40vh;
        min-height: 450px;
    }
    .menuLeft {
        flex-direction: column;
        align-items: start !important;
        justify-content: start;
    }
}

/* Mobile screen */

@media only screen and (max-width: 400px) {
    .card-text {
        line-height: 20px;
        font-size: 15px;
    }
    .flip-card-back {
        padding: 12px;
    }
}