/* Color Variables */
:root {
    --primary: #C8EB00;
    --black: black;
    --white: white;
    --grey: #bfbfbf;
}

.primary_color {
    color: var(--primary);
}
.black_color {
    color: var(--black);
}
.white_color {
    color: var(--white);
}
.grey_color {
    color: var(--grey);
}

/* Font Family */

.Dharma-Gothic-M-Thin {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 100;
    font-style: normal;
}
.Dharma-Gothic-M-Thin-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 100;
    font-style: italic;
}
.Dharma-Gothic-M-ExLight {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 200;
    font-style: normal;
}
.Dharma-Gothic-M-ExLight-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 200;
    font-style: italic;
}
.Dharma-Gothic-M-Light {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.Dharma-Gothic-M-Light-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 300;
    font-style: italic;
}
.Dharma-Gothic-M-Regular {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.Dharma-Gothic-M-Regular-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 400;
    font-style: italic;
}
.Dharma-Gothic-M-Bold {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.Dharma-Gothic-M-Bold-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 700;
    font-style: italic;
}
.Dharma-Gothic-M-ExBold {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.Dharma-Gothic-M-ExBold-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 800;
    font-style: italic;
}
.Dharma-Gothic-M-Heavy {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.Dharma-Gothic-M-Heavy-Italic {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* Common Styles */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--white);
}
::selection {
    background: var(--primary);
    color: var(--black)!important;
}
::-moz-selection {
    background: var(--primary);
    color: var(--black)!important
}
/* Remove default ugly outline */
:focus {
  outline: none;
}

/* Apply your custom focus style */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;        /* some spacing */
  border-radius: 6px;         /* match design */
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
h1, h2, h3 {
    line-height: 1;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none!important;
    color: inherit;
}
a:hover {
    color: var(--white);
}
img {
    max-width: 100%;
    height: auto;
}
@media (min-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
@media (min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
}

/*  */
.services-section {
    display: inline-flex;
    padding: 3rem 5.5% 3rem 5.5%;
    justify-content: flex-end;   /* pushes children toward the right */
    align-items: center;
    gap: 120px;                  /* space between left and right columns */
    background-color: #000;      /* matches your screenshot */
    width: 100%;                 /* make sure it spans full width */
    box-sizing: border-box;      /* so padding doesn’t overflow */
}

/* Left column */
.services-left {
    flex: 1 1 50%;
    /* min-width: 300px; */
}

.services-title {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #C8EB00;
    font-size: clamp(3rem, 5.6vw, 6rem);
    margin: 0;
}

.services-left p {
    font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    line-height: 1.5;
    max-width: 500px;
    color: #C8EB00;
}

/* Right column */
.services-right {
    flex: 1 1 50%;
    /* min-width: 300px; */
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(3rem, 5.6vw, 6rem); /* doubled */
    text-transform: uppercase;
    line-height: .78;
    color: #fff;
    text-align: end;
}

.services-right span {
    display: inline;
    /* margin-right: 0.4em; */
    white-space: nowrap;
}

.services-right .lime {
    color: #C8EB00;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .services-section {
        align-items: flex-start;
        flex-direction: column;
        gap: 40px;
    }
    .services-left {
        text-align: left;
    }
    .services-right {
        font-size: clamp(2.5rem, 5vw, 4rem);
        text-align: left;
    }
}

.text-on-image {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(3em, 6vw, 6.5em); /* slightly smaller than before */

    position: absolute;
    top: 50%;
    left: 0;
    max-width: 50%;
    transform: translateY(-50%);
}

/* Mobile: full width & responsive size */
@media (max-width: 768px) {
    .text-on-image {
        max-width: 100%;
        font-size: clamp(2em, 9vw, 5.5em); /* proportionally smaller */
    }
}

/* NAV settings */
.navbar_top {
    z-index: 999;
    width: 100%;
    min-height: 8vh;
    background-color: var(--black);
    /* padding-left: 2.5rem; */
    /* padding-right: 2.5rem; */
    position: fixed;
    top: 0%;
    left: 0%;
    /* transition: transform 400ms ease 0s; */
    -webkit-transition: .4s linear;
    transition: .4s linear;
}
.nav_component {
    padding: 2rem 4em 0 4em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.nav_logo_link {
    /* max-width: 100px; */
    float: left;
    position: relative;
    /* width: 100%; */
    text-decoration: none;
}
.nav_logo {
    width: 200px;
    /* max-width: 100%; */
    /* padding: 1rem 0; */
    display: inline-block;
    vertical-align: middle;
}
.nav_menu {
    float: right;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
}
.nav_links_wrapper {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 3rem;
}
.nav_link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    text-align: left;
    vertical-align: top;
    line-height: 1;
    font-size: 1;
    /* padding: 6px 0; */
    color: var(--primary);
}
.nav_links_social_wrapper {
    /* display: none; */
}
.nav_links_social i {
    font-size: 1.5rem;
    /* color: var(--white); */
}
.nav_menu_btn {
    display: none;
}
.nav_overlay {
    display: none;
}
.nav_link_text {
    font-family: "dharma-gothic-m", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.nav_link_text:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: var(--white);
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition: transform 0.2s ease-out;
}
.nav_link:hover .nav_link_text:after {
    transform: scaleX(1);
}
.w_current.nav_link {
    color: white;
    text-decoration: none;
}
.w_current .nav_link_text:after {
    background: white!important;
    transform: scaleX(1);
}
.nav_links_social a i {
    transition: transform .5s ease 0s;
}
.nav_links_social a:hover i {
    /* background-color: var(--primary); */
    /* color: var(--black); */
    transform: scale(1.1);
}
.nav_links_social a:hover {
    color: var(--white);
}
@media screen and (max-width: 1024px) {
    .nav_component {
        padding: 1rem;
    }
    .nav_overlay {
        display: block;
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: -1;
        transform: translateX(100%) translateY(0px);
        transition: transform 400ms ease 0s;
    }
    .nav_menu {
        display: none;
        width: 100%;
        height: 100%;
        background-color: var(--black);
    }
    .nav_links_wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        grid-row-gap: 1.5rem;
        padding: 8rem 2.5rem 2.5rem;
    }
    .nav_link {
        font-size: var(--step-4);
    }
    .nav_links_social_wrapper {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        margin-top: 1em;
        grid-row-gap: 1em;
    }
    .nav_links_social a {
        display: inline-block;
        /* height: 60px; */
        /* width: 60px; */
        /* background-color: var(--white); */
        text-align: center;
        line-height: 40px;
        /* border-radius: 50%; */
        color: var(--white);
        transition: all 0.5s ease 0s;
    }
    .nav_links_social a i {
        font-size: 3rem;
        line-height: 60px;
    }
    
    .nav_links_text {
        font-size: 1.125rem;
        color: var(--white);
    }
    .nav_menu_btn {
        display: block;
        position: relative;
        font-size: 24px;
        /* padding: .5em; */
        user-select: none;
        cursor: pointer;
        float: right;
    }
    .nav_menu_btn_icon {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-row-gap: .5rem;
        padding-bottom: 0;
        padding-right: 0;
    }
    .nav_menu_btn_icon_line_top, .nav_menu_btn_icon_line_middle, .nav_menu_btn_icon_line_bottom {
        width: 2.5rem;
        height: 2px;
        background-color: var(--primary);
        padding-bottom: 0;
        padding-right: 0;
        transition: all 0.3s ease;
        transform-style: preserve-3d;
    }
    
}
