* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #F7941D;
    --secondary-color: #1A1A1A;
    --dark-color: #000;
    --light-gray: #6C6D71;
    --light-color: #fff;
    --extra-bold: "Gotham-bold", sans-serif;
    --normal-bold: "Gotham-blk", sans-serif;
    --primary-orange: #fb8500;
    --dark-orange: #e67e22;
    --text-white: #ffffff;
}

h4 {
    font-size: 1.6rem;
    font-weight: 600;
}

/* menu */
        .navbar {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            opacity: 0.8;
            transform: translateY(-5px);
        }

        .navbar.scrolled:hover {
            opacity: 1;
            transform: translateY(0);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }

        .hamburger-btn {
            background: #2f2f2f;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            /*box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);*/
        }

        .hamburger-btn:hover {
            
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }

        .hamburger-btn i {
            color: var(--main-color);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            &:hover{
            color:var(--light-color);
        }
        }

        .hamburger-btn.active i {
            transform: rotate(90deg);
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1050;
            opacity: 1;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .menu-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
            border-radius: 20px;
            padding: 2rem;
            width: 90%;
            max-width: 400px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1051;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
        }

        .menu-popup::-webkit-scrollbar {
            display: none; /* WebKit */
        }

        .menu-overlay.show .menu-popup {
            transform: translate(-50%, -50%) scale(1);
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .close-btn i {
            color: white;
            font-size: 1.1rem;
        }

        .menu-items {
            margin-top: 2rem;
        }

        .menu-item {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            margin: 0.5rem 0;
            border-radius: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .menu-item:hover {
            color: white;
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .menu-item:active {
            transform: translateX(5px) scale(0.98);
        }

        .content {
            padding: 2rem 0;
        }

        .hero-section {
            text-align: center;
            padding: 4rem 0;
            color: white;
        }

        .hero-section h1 {
            margin-bottom: 1rem;
            /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);*/
        }

        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
        
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .menu-popup {
                width: 95%;
                padding: 1.5rem;
            }
            
            .menu-item {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hamburger-btn {
                width: 45px;
                height: 45px;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
        }


/* Gotham Font Family */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-blk';
    src: url('../fonts/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-bold';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-bold-ultra';
    src: url('../fonts/Gotham-Black.otf') format('opentype');
}

/* Base Typography */
body {
    font-family: 'Gotham', sans-serif;
    overflow-x: hidden;
}

/* Hero Section Styles */
.hero-section {
    background-color: #F7941D;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    margin-top: 85px;
}

.hero-text {
    color: white;
    text-align: center;
    font-size: 4.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    font-family: 'Gotham-blk', sans-serif;
}

/* Navbar Toggler Styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: 1001;
    transition: 0.3s;
    margin-left: auto;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: rgba(255, 255, 255, 0.984)x 3px 5px;
}

.sidebar-nav li {
    position: relative;
    padding: 10px;
}

.sidebar-nav li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 0;
    height: 1px;
    background-color: rgb(255, 255, 255);
    transition: all 0.5s ease-in-out;
}

.sidebar-nav li:hover::before {
    left: 0;
    width: 50%;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F7941D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(2px);
}

/* Responsive Styles */
@media only screen and (min-width: 766px) and (max-width: 996px) {
    .desk-width {
        display: flex;
        flex-direction: column;
    }

    .desk-width .first-box {
        width: auto;
    }

    .desk-width .second-box {
        width: auto;
    }

    .desk-width .third-box {
        width: auto;
    }
}

@media (max-width: 996px) {
        .collabration .div10{
                grid-column: unset!important;
            }
             .collabration .div10 .member-name{
                position: relative!important;
             }
    .sub-pad {
        display: none;
    }

    .dark-box h4 {
        font-size: 1.4rem;
    }

    .dark-box .second-head h4 {
        padding-left: 0 !important;
          margin:0!important;
          
    }

    .dark-box .third-head h4 {
        padding-left: 0 !important;
        margin:0!important;
    }

    .dark-box {
        width: auto !important;
    }

    .light-box h4 {
        font-size: 1.4rem;
        
    }

    .light-box .second-head h4 {
        padding-left: 0 !important;
        text-align:start!important;
    }

    .light-box .third-head h4 {
        padding-left: 0 !important;
    }

    .light-box {
        width: auto !important;
    }

    .desk-width .first-box {
        height: auto !important;
        padding: 2rem 0;
    }

    .desk-width .second-box {
        height: auto !important;
        padding: 2rem 0;
    }

    .desk-width .third-box {
        height: auto !important;
        padding: 2rem 0;
    }

    .desk-width {
        width: auto !important;
    }

    .why-brave-main-title {
        font-size: 3rem !important;
    }

    .founder h2 {
        font-size: 3rem !important;
    }

    .founder-sec {
        overflow-x: hidden;
    }

    .business-feature {
        overflow-x: hidden !important;
    }

    .let-connets .heading h2 {
        font-size: 2rem !important;
    }

    .founder-sec .desigination {
        overflow-x: hidden !important;
    }

    .foot-brave {
        padding: 3rem 1rem !important;
    }

    .let-touch {
        padding: 3rem 2rem !important;
    }

    .our-value .heading h2 {
        font-size: 3rem !important;
        line-height: 3rem !important;
    }

    .parent-grid-five {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .parent-grid-four {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .parent-grid-six {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .collabration .collabration-main-heading {
        padding: 2rem 1rem !important;
    }

    .let-connets .heading h2 {
        font-size: 4rem;
    }

    .get-comport .heading h2 {
        font-size: 2.2rem !important;
        line-height: 2rem !important;
    }

    .collabration .collabration-main-heading .heading h2 {
        font-size: 3rem !important;
        line-height: 3rem !important;
    }

    .business-feature .box .heading h4 {
        font-size: 1.2rem !important;
    }

    .parent-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .services .heading h2 {
        line-height: 3rem !important;
        font-size: 2.5rem !important;
    }

    .hero-text {
        font-size: 2.5rem;
    }

    .sidebar {
        width: 100%;
        right: -100%;
    }

    .sidebar.active {
        right: 0;
    }
}

/* Collaboration Section Styles */
.collaboration-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Gotham', sans-serif;
}

.collaboration-text {
    font-size: 26px;
    line-height: 1.5;
    color: #8d8d8d;
    font-weight: 300;
    text-align: justify;
}

.highlight-text {
    color: #F7941D;
    font-weight: 700;
}

.gray-text {
    color: #c5c8cb;
    font-weight: 600;
}

.large-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    color: #9c9fa2;
    font-family: 'Gotham-bold';
}

@media (max-width: 768px) {
    .collaboration-text {
        font-size: 18px;
    }

    .large-text {
        font-size: 18px;
    }
}

/* What We Do Section */
.what-we-do {
    display: flex;
    min-height: 100vh;
}

.what-we-do-left {
    width: 40%;
    background-color: #F7941D;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

.what-we-do-right {
    width: 60%;
    background-color: #1A1A1A;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4em;
    margin-bottom: 40px;
    font-family: 'Gotham-bold';
}

.big-text {
    color: #000;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--normal-bold)
}

.right-content p {
    color: #8d8d8d;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 992px) {
    .what-we-do {
        flex-direction: column;
    }

    .what-we-do-left,
    .what-we-do-right {
        width: 100%;
        padding: 60px 30px;
    }

    .big-text {
        font-size: 40px;
    }

    .right-content p {
        font-size: 14px;
    }
}

/* How We Do It Section */
.how-we-do {
    background-color: #fff;
    padding: 6rem 0 2rem;
    text-align: center;
}

.how-we-do-title {
    color: #F7941D;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.4em;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Gotham-bold';
}

.approach-title {
    color: #000;
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--normal-bold);
}

@media (min-width: 1400px) {
    .pramid-con {
        max-width: fit-content !important;
        overflow-x: hidden;
    }
}

@media (max-width: 992px) {
    .approach-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .parent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)!important;
    grid-template-rows: repeat(2, 1fr)!important;
    gap: 4px;
}

  .parent-grid .div5:nth-child(5) {
    grid-column: span 2 !important; 
}

    .business-feature .div6{
display: none;
    }
    .foot-brave img{
        width: 50%!important;
    }
    .founder-sec .desigination h4{
        font-size: 1.3rem;
    }

    .shapequeen {
        left: 0;
    }

    .block {
        right: 0;
    }

    /* .pyramid{
        clip-path: unset!important;
    }
    .pyramid-down{
        clip-path: unset!important;
    } */
    .pramid-con {
        overflow-x: hidden !important;
    }

    .vuca-box {
        max-width: 96% !important;
    }

    .vuca-box-two {
        max-width: 96% !important;
    }

    .how-we-do {
        padding: 60px 0;
    }

    .approach-title {
        font-size: 40px;
    }
}

/* Key Points Section */
.key-points {
    background-color: #F7941D;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.key-point {
    margin-bottom: 50px;
}

.key-point:last-child {
    margin-bottom: 0;
}

.key-point-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Gotham-bold';
}

.key-point-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 768px) {
    .founder-sec .desigination:first-child {
        border-bottom: 1px solid #000;
    }

    .key-points {
        padding: 60px 0;
    }

    .key-point {
        margin-bottom: 30px;
    }

    .key-point-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .key-point-text {
        font-size: 14px;
    }
}

.pyramid {
    position: relative;
    width: 600px;
    height: 400px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: rotate(180deg);
    /* Rotate pyramid by 180 degrees */
    margin-top: -15px;
}

.block {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 18px;
    transform: rotate(0deg);
    /* Keep text upright */
}

.block1 {
    top: 0;
    background: #f7941d;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 135px;
}

.block2 {
    top: 140px;
    background: #f7941d;
    display: flex;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.block3 {
    top: 200px;
    background: #f7941d;
    display: flex;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.block4 {
    top: 260px;
    background: #f7941d;
    display: flex;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.block5 {
    top: 320px;
    background: #f7941d;
    display: flex;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.block p {
    margin: 0;
    padding: 0;
    transform: rotate(180deg);
    font-size: 0.885rem;
    right: 12px;
    position: relative;
    font-weight: 500;
}

.block:last-child p {
    font-size: 1.2rem !important;
    font-weight: 600;
}

.block:first-child p {
    position: relative;
    top: 20px;
}

.vuca-box {
    background-color: #312D2D;
    color: #fff;
    text-align: center;
    max-width: 50%;
    padding: 0.9rem 2rem;
    margin-top: 1rem;
}

.vuca-box .heading h4 {
    font-size: 1.3rem;
}

.vuca-box-two {
    background-color: #312D2D;
    color: #fff;
    text-align: center;
    max-width: 50%;
    padding: 0.75rem 1rem;
    margin-top: -10px;
    margin-bottom: 20px;
}

.vuca-box-two .heading h4 {
    font-size: 0.875rem;
}

.brave-solve {
    padding: 1.2rem 1rem;
    background-color: #1A1A1A;
    text-align: center;
    width: 300px;
    position: relative;
    top: -30px;
}

.brave-solve .heading h4 {
    color: #F7941D;
    text-decoration: underline;
    text-underline-offset: 8px;
    font-size: 1rem;
}

.brave-solve h4 {
    color: #ffff;
    font-size: 1rem;
    padding-top: 1rem;
    line-height: 1.5rem;
}

.pyramid-down {
    position: relative;
    width: 600px;
    height: 400px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    margin-top: -76px;
    z-index: -1;
}

.shapequeen {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 18px;
    transform: rotate(0deg);
    /* Keep text upright */
}

.shapequeen1 {
    top: 0;
    background: #f7941d;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.shapequeen2 {
    top: 155px;
    background: #f7941d;
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: center;
}

.shapequeen3 {
    top: 280px;
    background: #f7941d;
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
}

.shapequeen p {
    margin: 0;
    padding: 0;
}

.pyramid-down .shapequeen:first-child p {
    position: relative;
    right: 10px;
    top: 20px;
    line-height: 17px;
}

.why-brave {
    background-color: #1A1A1A;
    padding: 100px 0;
    text-align: center;
}

.why-brave-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4em;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Gotham-bold';
}

.why-brave-main-title {
    color: #F7941D;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--normal-bold);
}

.exp-thinker {
    padding: 5rem 0;
    background-color: #fff;
}

.exp-thinker .heading h4 {
    padding: 0 0 1rem;
    letter-spacing: 0.2em;
    color: var(--main-color);
    font-family: 'Gotham-bold';
}

.exp-thinker .heading p {
    padding: 0 0 1rem;
    letter-spacing: 0.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    color: var(--light-gray);
    font-size: 1rem;
}

.founder {
    padding: 10rem 0;
    background-color: var(--light-gray);
}

.founder h2 {
    text-align: center;
    font-size: 5rem;
    color: var(--light-color);
    font-family: var(--normal-bold);
}

.founder-sec .desigination h4 {
    color: var(--main-color);
    /*padding-bottom: 1rem;*/
    font-family: 'Gotham-bold';
}

.founder-sec .desigination {
    text-align: center;
    padding: 2rem 0;
}

.services {
    text-align: center;
    padding: 7rem 0 5rem;
    background-color: var(--main-color);
}

.services .heading h4 {
    color: var(--main-color);
    letter-spacing: 0.4em;
    padding-bottom: 1rem;
    color: var(--light-color);
    font-family: 'Gotham-bold';
}

.services .heading h2 {
    color: var(--dark-color);
    line-height: 5rem;
    font-size: 6rem;
    font-family: var(--normal-bold);
}

.parent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
}

.business-feature .box {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    min-height: 320px;
    justify-content: center;
}

.business-feature .box .heading h4 {
    color: var(--main-color);
    text-decoration: unset;
    line-height: 2rem;
    font-family: 'Gotham-bold';
}

.business-feature .parent-grid a {
    color: transparent;
}

.collabration .collabration-main-heading {
    padding: 4rem;
    background-color: var(--light-gray);
    text-align: center;
}

.collabration .collabration-main-heading .heading h4 {
    color: var(--main-color);
    padding-bottom: 1.4rem;
    font-family: 'Gotham-bold';
}

.collabration .collabration-main-heading .heading h2 {
    color: var(--light-color);
    font-size: 4rem;
    line-height: 3.6rem;
    padding-bottom: 1.5rem;
    font-family: var(--normal-bold);
}

.collabration .collabration-main-heading .heading p {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin: 0;
    color: var(--light-color);
}

.parent-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
}

.parent-grid-four .member-card {
    position: relative;
}

.parent-grid-four .member-card .member-name {
    position: absolute;
    background-color: var(--main-color);
    width: 100%;
    bottom: 0;
    padding: 1.2rem 1rem;
    min-height: 110px;
    align-content: center;
}

.parent-grid-four .member-card .member-name p {
    text-align: center;
    line-height: 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.13rem;
    margin-bottom: 05px;
    color: var(--dark-color);
    font-family: 'Gotham-bold';
}

.parent-grid-four .member-card .member-name p:first-child {
    color: var(--light-color) !important;
     font-family: 'Gotham';
}

.parent-grid-four .member-card:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    cursor: pointer;
}

.our-value {
    text-align: center;
    padding: 7rem 0 5rem;
    background-color: var(--light-color);
}

.our-value .heading h4 {
    color: var(--dark-color) !important;
    letter-spacing: 0.4em;
    padding-bottom: 1rem;
    color: var(--light-color);
    font-family: 'Gotham-bold';
}

.our-value .heading h2 {
    color: var(--main-color);
    line-height: 4rem;
    font-size: 5rem;
    font-family: var(--normal-bold);
}

.parent-grid-six {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
}

.parent-grid-six .exp-member-card {
    position: relative;
}

.parent-grid-six .exp-member-card .exp-member-name {
    position: absolute;
    background-color: #eaeaea;
    width: 100%;
    bottom: 0;
    padding: 1.2rem 0.4rem;
    min-height: 120px;
    align-content: center;
}

.parent-grid-six .exp-member-card .exp-member-name p {
    text-align: center;
    line-height: 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 05px;
    font-family: 'Gotham-bold';
}

.parent-grid-six .exp-member-card .exp-member-name p:first-child {
    color: var(--main-color) !important;
}

.parent-grid-six .exp-member-card .exp-member-name p:last-child {
    font-size: 0.7rem;
    color: var(--dark-color);
}

.parent-grid-six .exp-member-card:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    cursor: pointer;
}

.get-comport {
    text-align: center;
    padding: 7rem 0 5rem;
    background-color: var(--main-color);
}

.get-comport .heading h4 {
    color: var(--dark-color) !important;
    letter-spacing: 0.4em;
    padding-bottom: 1rem;
    color: var(--light-color);
    font-family: 'Gotham-bold';
}

.get-comport .heading h2 {
    color: var(--light-color);
    line-height: 4rem;
    font-size: 5rem;
    font-family: var(--normal-bold);
}

.parent-grid-five {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
}

.let-connets {
    padding: 6rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.let-connets .heading h2 {
    font-size: 5rem;
    color: var(--main-color);
    font-family: var(--normal-bold);
}

.let-touch {
    background-color: #141416;
    padding: 7rem 15rem;
}

.let-touch h4 {
    color: var(--main-color);
    font-weight: 600;
    font-family: 'Gotham-bold';
}

.let-touch p,
a {
    color: #ffffff;
    text-decoration: unset;
    font-weight: 500;
}

.foot-brave {
    padding: 6rem 12rem;
}

.foot-brave img {
    width: 80%;
}

.foot-brave p {
    color: var(--secondary-color);
}

.no-pad {
    padding: 0;
}

.desk-width {
    width: 1300px;
}

.desk-width p {
    font-size: 0.8rem;
    line-height: 1.4rem;
    font-weight: 500;
}

.desk-width .first-box {
    background-color: #000;
    height: 400px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.desk-width .first-box p {
    color: var(--main-color);
    font-family: 'Gotham-bold';
    margin: 0;
}

.desk-width .second-box {
    background-color: var(--main-color);
    height: 400px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.desk-width .second-box p {
    color: var(--light-color);
    font-family: 'Gotham-bold';
        margin: 0;
}

.desk-width .third-box {
    /*background-color: rgba(239, 239, 239, 0.867);*/
    text-align: center;
    height: 400px;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: start !important;
}

.desk-width .third-box p {
    color: var(--main-color);
        font-family: 'Gotham-bold';
    line-height: 2.4rem;
        margin: 0;
}

.business-feature .fancybox__content {
    padding: 0 !important;
}

.dark-box {
    width: 800px;
    background-color: var(--secondary-color);
    padding: 3rem;
}
.dark-box img{
    display: none;
}
.dark-box p {
    padding: 1rem 0 0 0;
    color: #c6c6c6;
    font-size: 1.133rem;
}

.dark-box h4 {
    color: var(--main-color);
    font-family: 'Gotham';
    font-size:1.2rem;
    
}

.dark-box .second-head h4 {
    color: var(--light-color);
    /* padding-left: 5rem; */
    font-size:1.2rem;
}

.dark-box .third-head h4 {
    color: var(--light-color);
    /* padding-left: 3rem; */
    font-size: 1.2rem;
    text-transform: uppercase;
}

.light-box {
    width: 800px;
    background-color: var(--light-color);
    padding: 3rem;
}
.light-box img{
    display: none;
}
.light-box p {
    padding: 1rem 0 0 0;
    color: var(--light-gray);
    font-size: 1.133rem;
}

.light-box h4 {
    color: var(--main-color);
    font-family: 'Gotham';
}

.light-box .second-head h4 {
    color: var(--dark-color);
}

.sub-pad {
    padding-left: 0rem;
}

.founder-sec .desigination:first-child {
    border-right: 1px solid #000;
}

.founder-sec .desigination:last-child {
    border-left: 1px solid #000;
}

.pramid-con .inspira {
    text-transform: uppercase;
    font-size: 1.2rem;
}

.founder-sec .des-text {
    font-size: 1rem;
}

.fancybox__backdrop{
    background-color:#000!important;
}

.is-close-btn{
    background-color:unset!important;
    color:#F7941D!important;
    width:32px!important;
    height:32px!important;
}
.light-box .second-head h4{
    font-size: 1.2rem;
}
.light-box h4:nth-child(3){
    text-align:center!important;
    font-size: 1.2rem;
}

.founder-sec .desigination p{
    color: var(--light-gray);
}

/*.collabration .div10 {*/
/*    grid-column: span 2;*/
    /*background-color: #81c784; */
/*  }*/

.foot-brave a{
    color:#000;
}