:root {
    --primary-color: #F46402;
    --secondary-color: #050505;
    --w-sm-100: 100%;
    --w-md-80: 80%;
    --wolverine-theme-color: rgb(30, 135, 240);
    --code-studio-color: #dcbc65;
    --wu: #FEDD03;
    --crypto-grey: #303030;
    --travel-color: #FF9634;
    --crypto-teack-color: #FF3F80;
    --j2s: #04386A;
    --borderColor-default: #21262D;
    --borderColor-muted: #21262D;
    --ease-in-out: cubic-bezier(0.5, 0.16, 0.1, 1);
    --ease-in: cubic-bezier(0.54, 0.12, 0.76, 0.42);
    --ease-out: cubic-bezier(0.12, 0.62, 0.12, 0.95);
    --headingReveal-staggerDelay: 0.1s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-wrap: pretty;
}

@font-face {
    font-family: 'Blair';
    src: url('../fonts/blair-itc-medium.ttf') format('truetype'),
}

/* Reset and Base Styling */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Blair, sans-serif !important;
    /* Add a fallback font */
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: white;
    z-index: 1000;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--primary-color);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-color);
}

a {
    text-decoration: none !important;
}

.ml-2 {
    margin-left: 1em;
}

.p-1 {
    padding: 1em;
}

.section-title {
    color: var(--primary-color);
    font-size: clamp(2rem, 3vw, 4em)
}

.project-title {
    color: var(--secondary-color);
}

.typewrite {
    color: var(--secondary-color);
}

/* Banner Styling */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Ensures it takes the full viewport height */
    width: 100vw;
    /* Ensures it takes the full viewport width */
    position: relative;
    text-align: center;
    /* Center aligns text content */
    overflow: hidden;
    /* Prevents overflow of any child elements */
    border-bottom: 1px solid var(--primary-color)
}

.banner .content {
    z-index: 1;
    /* Ensures text stays above background and mask */
    padding: 1rem;
}

.content {
    width: 85vw;
    height: 30vh;
    border: 1px solid var(--primary-color)
}


.banner .content .title {
    font-family: Blair, sans-serif;
    font-size: clamp(3rem, 10vw, 9em);
    /* Responsive font size */
    margin: 0;
    color: var(--primary-color);
}

.banner .content p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.icon {
    width: 30px;
}

.action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn {
    border-radius: 30px;
}

.social-btn {
    color: black;
    margin-top: 20px;
    width: 10vw;
}

.section {
    height: 100vh;
}

.center-thing {
    display: grid;
    place-content: center;
    place-items: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.column {
    padding: 20px;
    background-color: lightgray;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.column-4 {
    flex: 0 0 32.33%;
}

.column-8 {
    flex: 0 0 65.66%;
}

/* Responsive Adjustments (Optional) */
@media (max-width: 768px) {
    .banner .content .title {
        font-size: clamp(1rem, 10vw, 9em);
    }

    .banner .content p {
        font-size: 1rem;
    }

    .typewrite {
        font-size: clamp(1rem, 3vw, 3em);
    }

    .content {
        width: 85vw;
        height: 25vh;
        border: 3px solid var(--primary-color)
    }

    .social-btn {
        margin-top: 25px;
        width: 40vw;
    }

    .column-4,
    .column-8 {
        flex: 0 0 100%;
    }

    .project-title {
        color: var(--secondary-color);
        font-size: clamp(1rem, 1vw, 1em)
    }
}



/* Media Queries */

@media (min-width: 576px) {
    .w-sm-100 {
        width: var(--w-sm-100);
    }

    .w-sm-80vw {
        width: 80vw;
    }

}

@media (min-width: 768px) {
    .w-md-80 {
        width: var(--w-md-80);
    }

    .w-md-30vw {
        width: 30vw;
    }
}


/* Bootstrap Overrides */

.icon-link {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-wolverine {
    color: white !important;
    background-color: var(--wolverine-theme-color) !important;
    border-color: var(--wolverine-theme-color) !important;
}

.bg-wolverine {
    background-color: var(--wolverine-theme-color) !important;
}

.wolverine-color {
    color: var(--wolverine-theme-color) !important
}

.bg-body-wolverine {
    background-color: var(--wolverine-theme-color) !important
}


.codestudio-color {
    color: var(--code-studio-color) !important
}

.crypto-track-color {
    color: var(--crypto-teack-color) !important;
}

.check {
    -webkit-text-stroke: 1px;
}

.bg-wu {
    background-color: var(--wu) !important;
}

.color-wu {
    color: var(--wu) !important;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.crypto-grey {
    background-color: var(--crypto-grey) !important;
}

.nucliofy-carausal {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.travel-color {
    background-color: var(--travel-color);
}

.btn-j2s {
    background-color: var(--j2s) !important;
    color: white !important;
}


.bg-body-nucleofy {
    background-color: var(--primary-color) !important;
}

.text-white {
    color: white !important;
}

.featured-0 {
    color: transparent;
    background: linear-gradient(89.46deg, #e85aad .87%, #545df0 75.12%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.featured-0-border {
    position: relative;
    border: none;
    /* Remove default card border */
    border-radius: 10px;
    /* Optional: Rounded corners */
    background-clip: padding-box;
}

.featured-0-border::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(89.46deg, #e85aad .87%, #545df0 75.12%);
}

.lang {
    font-size: 10px;
}

img.lang-img {
    max-width: 100%;
    height: auto;
}

.img-container {
    place-items: center;
    display: grid;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.ed-image {
    width: 55% !important;
}

.machintosh-1 {
    width: 75%;
}

.tech-square {
    display: flex;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1),
        0px 1px 3px rgba(0, 0, 0, 0.06);
}

.tech {
    border-radius: 30px;
    border: 1px solid #dee2e6;
    width: 3rem;

}

.tech-img {
    width: 100%;
}

.services-grid__service-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 80px;
    height: 96px;
    padding: 14px 10px;
    background: #2b2b2b !important;
    border-radius: 9px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.services-grid__service-icon {
    height: 56px;
    width: 56px;
    opacity: 1;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.services-grid__service-name {
    color: #fff;
    font-size: 8px;
    letter-spacing: 0;
    line-height: 12px;
}

.services-grid__service-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


.animated-button {
    transition: background-color 100s var(--ease-out);
}



