:root {
    --primary: #B9FF66;
    --secondary: #222222;
    --accent: #ffffff;
    --light-gray: #f5f5f5;
    --text: #444444;
}

body {
    font-family: 'Archivo', sans-serif;
    color: var(--text);
    background: var(--accent);
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

.bg-primary-custom {
    background: var(--primary) !important;
}

.bg-secondary-custom {
    background: var(--secondary) !important;
}

.bg-light-gray {
    background: var(--light-gray) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.bg-fc {
    background: #222222 !important;
}

.bg-fc1 {
    background: #1c1c1c !important;
}

.section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.scroll-container {
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
}

/*banner section*/
.custom-bg-cssonly {
    background-color: #222222;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;

    background-image:
        /* Layer 1: fade mask from transparent to solid bg */
        linear-gradient(to bottom,
            rgba(34, 34, 34, 0) 85%,
            /* Top 75% fully transparent */
            rgba(34, 34, 34, 1) 85%),
        /* Bottom 25% fully black */

        /* Layer 2: horizontal grid lines */
        repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.07) 0,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px,
            transparent 120px),

        /* Layer 3: vertical grid lines */
        repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.07) 0,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px,
            transparent 140px);

    background-size: 100% 100%, 80px 140px, 80px 140px;
    background-repeat: no-repeat, repeat, repeat;
}

/* .custom-bg-cssonly {
    background: #222222;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    background-image:
        repeating-linear-gradient(to right, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 120px),
        repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 120px);
    background-size: 80px 100px;
} */



.custom-call-btn {
    background: var(--primary) !important;
    color: #222222;
    font-weight: 500;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(75, 16, 197, 0.08);
    border: none;
    transition: background 0.2s;
}

.custom-call-btn:hover {
    background: var(--primary) !important;
    color: #222222;
}

.custom-highlight {
    background: var(--primary);
    transform: skewX(-5deg);
    color: #222222;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }

    .custom-highlight {
        font-size: 2.2rem;
    }

    .custom-call-btn {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }

    .container-fluid.pt-4 {
        padding-top: 1rem !important;
    }
}





.highlight {
    background: var(--primary);
    color: var(--secondary);
    padding: 0 0.5em;
    border-radius: 0.25em;
    display: inline-block;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    transition: background 0.3s, color 0.3s;
}

.btn-primary-custom:hover {
    background: #a0e64d;
    color: #111;
}

.box,
.card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.box:hover,
.card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px) scale(1.02);
}

/* Scroll-to-top button */
#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

#scrollTopBtn:hover {
    background: #a0e64d;
}

/* Parallax headline */
.parallax-headline {
    will-change: transform;
    transition: transform 0.3s;
}

/* Responsive font sizes */
.display-1,
.display-2,
.display-3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
}

/* Custom for scroll snap on mobile */
@media (max-width: 767.98px) {
    .section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/*brand iddentiy*/
/* Diagram Circles */
.circle {
    width: 170px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: bold;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.bs-circle {
    background: #B9FF66;
}

.bi-circle,
.brs-circle {
    background: #FFA500;
    color: #111;
}

.ms-circle {
    background: #F7E85B;
}

.bi-circle,
.brs-circle {
    width: 170px;
    height: 110px;
}

.bs-circle,
.ms-circle {
    width: 170px;
    height: 110px;
}

/* Connecting Lines */
#brand-flow-diagram .row {
    position: relative;
}

#brand-flow-diagram .row::before,
#brand-flow-diagram .row::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: #aaa;
    z-index: 1;
}

#brand-flow-diagram .row::before {
    top: 60px;
    height: 80px;
}

#brand-flow-diagram .row::after {
    top: 260px;
    height: 80px;
}

/* Horizontal line between Brand Identity and Brand Strategy */
#brand-flow-diagram .col-12.d-flex.justify-content-center.align-items-center.mb-4.position-relative::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 4px;
    background: #aaa;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Side Labels */
.side-label {
    position: absolute;
    font-size: 0.95rem;
    color: #222;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 220px;
    z-index: 3;
}

.left-label {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.right-label {
    right: 0;
    text-align: left;
}

.top-label {
    top: 10px;
}

.mid-label {
    top: 180px;
}

.bottom-label {
    bottom: 30px;
}

/*bottom shape*/
.diagonal-shape {
    width: 100%;
    height: 55px;
    /* Adjust height as needed */
    background: linear-gradient(to top left,
            #B9FF66 49.5%,
            white 50%);
    /* Optional: Remove margin/padding if needed */
    margin: 0;
    padding: 0;
}


.custom-shape-box {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
}

.custom-shape-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 100% solid transparent;
    border-left: 60px solid #000;
    /* Change #000 to your background color */
    z-index: 2;
}

/*f letter shape*/
.custom-icon1 {
    width: 120px;
    height: 110px;
    background-color: #8D16C8;
    /* Bootstrap yellow is #ffc107, but this is closer to your image */
    border-radius: 49px;
    /* Large rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-letter {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
}

.custom-icon2 {
    width: 120px;
    height: 110px;
    background-color: #fff;
    /* Bootstrap yellow is #ffc107, but this is closer to your image */
    border-radius: 49px;
    /* Large rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}


.custom-icon3 {
    width: 120px;
    height: 110px;
    background-color: #EDD501;
    /* Bootstrap yellow is #ffc107, but this is closer to your image */
    border-radius: 49px;
    /* Large rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.custom-icon4 {
    width: 120px;
    height: 110px;
    background-color: #f3d600;
    /* Bootstrap yellow is #ffc107, but this is closer to your image */
    border-radius: 49px;
    /* Large rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/*monkey box style*/
.money-box {
    border-radius: 0px;
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    overflow: visible;
    min-height: auto;
    margin-bottom: 0px;
    text-align: start;
}

.shadow-custom {
    /* Extra shadow for more depth */
    box-shadow: 0 24px 60px 0 rgba(0, 0, 0, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}

.money-box-pointer {
    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 70px solid transparent;
    border-right: 40px solid #fff;
    /* filter: drop-shadow(-8px 8px 16px rgba(0, 0, 0, 0.18)); */
    z-index: 1;
    transform: skewy(25deg);
}

.border-highlight {
    border-left: 10px solid #A6FF00;
    padding-left: 24px;
}

.monkey-img {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: 340px;
    max-width: 90vw;
    z-index: 2;
    background: transparent;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

@media (max-width: 767.98px) {
    .money-box {
        padding: 2rem 1rem 5rem 1rem;
        min-height: 300px;
    }

    .monkey-img {
        width: 220px;
        bottom: -40px;
    }

    .money-box-pointer {
        left: -24px;
        bottom: 24px;
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-right: 24px solid #fff;
    }

    .border-highlight {
        padding-left: 12px;
        border-left-width: 6px;
    }
}



/*designcreative style*/
.box-lbg {
    background: #E5E7EC !important;
}

.dc-box {
    border-radius: 0px;
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.25);
    background: #E5E7EC;
    overflow: visible;
    min-height: auto;
    margin-bottom: 0px;
    text-align: start;
}

.shadow-custom {
    /* Extra shadow for more depth */
    box-shadow: 0 24px 60px 0 rgba(0, 0, 0, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}

.dc-box-pointer {
    position: absolute;
    right: -40px;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 70px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 40px solid #E5E7EC;
    /* filter: drop-shadow(-8px 8px 16px rgba(0, 0, 0, 0.18)); */
    z-index: 1;
    transform: skewy(25deg);
}

.de-box-pointer {

    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 70px solid transparent;
    border-right: 40px solid #E5E7EC;
    /* filter: drop-shadow(-8px 8px 16px rgba(0, 0, 0, 0.18)); */
    z-index: 1;
    transform: skewy(25deg);

}






/*step card*/
.step-card {
    background: #222222 !important;
    height: 140px !important;
    color: white !important;
    border-radius: 20px !important;
    /* padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      margin-bottom: 2rem; */
}


.step-number {
    color: #222222;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .step-wrapper:nth-child(odd) {
        padding-left: 25%;
    }

    .step-wrapper:nth-child(even) {
        padding-right: 25%;
    }
}

.social-btn {
    width: 50px;
    height: 50px;
    background-color: #333;
    /* Dark circle */
    color: white;
    padding: 1px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary);
    /* Facebook Blue */
    color: #222222;
}


@media screen and (max-width: 480px) {


    .banner-section {
        min-height: 70vh !important;
    }

    .money-box-pointer,
    .de-box-pointer,
    .dc-box-pointer {
        display: none !important;
    }


    .section {
        min-height: auto;
    }
}