/* Fonts */
.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}


/* General */
* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
}

*:hover, *:focus *:active {
    outline: none;
    border: none;
}
html {
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;;
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body {
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background-color: #EBEBEB;
    color: #121718;
    scroll-behavior: smooth;
}
html, body{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
body.dark-mode {
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background-color: #121212;
    color: #ffffff;
    scroll-behavior: smooth;
}
ul, li {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    line-height: 1;
}
ul.dark-mode, li.dark-mode {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    line-height: 1;
    color: #fff;
}
img {
    display: block;
    width: 100%;
}
svg {
    width: auto!important;
    display: block;
}
a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: -0.5px;
    color: #121718;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 400;
}


/* Columns & Containers */
.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}
.sec_gap {
    padding: 100px 0;
}
.row {
    margin: 0 -1rem;
}
.col_gap {
    margin: 0 1rem;
}
.col_6 {
    width: 50%;
}


/* Flexbox */
.flexbox {
    display: flex;
    align-items: center;
}
.align_items_start {
    align-items: flex-start;
}
.flex_column {
    flex-direction: column;
}
.space_between {
    justify-content: space-between;
}
.flow_wrap {
    flex-flow: wrap;
}


/* Fonts */
h1 {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1;
}
h2 {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.1;
}
h4 {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}


/* Button & Links */
.btn_toggle{
    background-color: transparent;
    color: #121718;
    border: 1px solid #121718;
}
.btn_toggle:hover{
    background-color: #121718;
    color: #fff;
}
body.dark-mode .btn_toggle{
    background-color: #242323;
    color: #fff;
}
body.dark-mode .btn_toggle:hover{
    background-color: #EBEBEB;
    color: #121718;
}
.btn_primary {
    padding: 0 1.2rem;
    border-radius: 70px;
    height: 52px;
}
.btn_primary:hover {
    transition: 0.3s;
}
.btn_dark {
    background-color: #121718;
    color: #fff;
    border: 1px solid #121718;
}
.btn_dark:hover {
    background-color: transparent;
    color: #121718;
}
body.dark-mode .btn_dark{
    background-color: #EBEBEB;
    color: #121718;
}
body.dark-mode .btn_dark:hover{
    background-color: #242323;
    color: #fff;
}
.btn_linear {
    background: linear-gradient(97deg, #FF4700 3.56%, #D60B7D 34.74%, #6B3D91 96.3%);
    color: #fff;
    transition: 0.3s ease;
}
.btn_linear:hover .btn_arrow {
    margin-left: 12px;
    width: 54px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
}
.btn_linear:hover {
    padding-right: 5px;
    transition: 0.3s ease;
}
.btn_arrow {
    position: relative;
    background-color: #fff;
    border-radius: 100px;
    width: 0;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}
.btn_arrow img {
    height: 14px;
    width: auto;
}

.no-hover::after{
    content: none;
}


/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 99;
}
nav ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
nav ul li a {
    position: relative;
}
body.dark-mode nav ul li a {
    color:#fff;
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #121718;
    transition: 0.3s ease;
}
nav ul li a:hover::after {
    width: 100%;
    transition: 0.3s ease;
}
nav ul li:last-child a::after {
    display: none;
}
.hamburger {
    display: none;
}


/* Hero */
#hero {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 200px;
    padding-bottom: 100px;
    flex-grow: 1;
}

.hero_heading h1 span {
    background: linear-gradient(97deg, #FF4700 3.56%, #D60B7D 34.74%, #6B3D91 96.3%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero_text {
    width: 75%;
    margin: 20px 0;
}
.hero_buttons {
    gap: 0 20px;
}


/* Service */
#services {
    position: relative;
    background: linear-gradient(178deg, rgba(255, 255, 255, 0.00) 23.42%, #fff 98.58%);
}

body.dark-mode #services {
    background: linear-gradient(178deg, rgba(18, 18, 18, 0.00) 23.42%, #121212 98.58%);
}
#services .sec_gap {
    padding-top: 0;
}
.service_heading {
    margin-bottom: 70px;
}
.service_items {
    position: relative;
    gap: 20px;
}
.single_service_box {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 65px 156px 47px 0px rgba(186, 186, 186, 0.00), 42px 100px 43px 0px rgba(186, 186, 186, 0.01), 24px 56px 37px 0px rgba(186, 186, 186, 0.05), 10px 25px 27px 0px rgba(186, 186, 186, 0.09), 3px 6px 15px 0px rgba(186, 186, 186, 0.10);
}
.single_service_box_items {
    padding: 2rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_icon {
    margin-right: 25px;
}
.single_service_heading h4 {
    font-weight: 400!important;
}

body.dark-mode .single_service_heading h4 {
    font-weight: 400!important;
    color: #000;
}


/* Contact */
#contact {
    position: relative;
    background-color: #fff;
}
body.dark-mode #contact{
    position: relative;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.00) 23.42%, #121212 98.58%);
}
#contact .col_6:last-child {
    margin-left: 80px;
}
.contact_heading {
    width: 95%;
    margin-bottom: 60px;
}
.contact_heading h4 {
    position: relative;
    margin-bottom: 30px;
    padding-left: 24px;
}
.contact_heading h4::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 14px;
    border-radius: 100%;
    background: linear-gradient(97deg, #FF4700 3.56%, #D60B7D 34.74%, #6B3D91 96.3%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.form_group {
    margin-bottom: 30px;
}
label {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
input, textarea {
    position: relative;
    width: calc(100% - 50px);
    border: 1px solid rgba(51, 51, 51, 0.2);
    padding: 20px 25px;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 15px;
}
input:hover, input:focus, input:focus-visible,
textarea:hover, textarea:focus, textarea:focus-visible {
    border: 1px solid rgba(51, 51, 51, 0.2);
}
input:placeholder-shown, input::placeholder,
textarea:placeholder-shown, textarea::placeholder {
    color: #ccc;
}

textarea:placeholder-shown.dark-mode, textarea::placeholder.dark-mode {
    color: #000;
}
button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    cursor: pointer;
}


/* Footer */

footer {
    background-color: #fff;
    color: #000;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

body.dark-mode footer {
    background-color: #000;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
}
.c_info {
    display: flex;
    align-items: center;
}
body.dark-mode .c_info {
    color: #fff;
}
body.dark-mode a{
    color: #fff;
}
.c_info h4 {
    font-size: 1.1rem;
}
.c_info a {
    position: relative;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-weight: 700;
    margin: 0 4px;
    transition: 0.3s ease;
}
.c_info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 2px;
    left: 0;
    background-color: #121718;
    transition: 0.3s ease;
}
.c_info a:hover::after {
    width: 100%;
    transition: 0.3s ease;
}
.c_socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    fill: #4F4F4F;
}
body.dark-mode .c_socials a {
    fill: #fff;
    border: 1px solid rgba(113, 113, 113, 1);
    border-radius: 100%;
}
.c_socials a {
    position: relative;
    height: 36px;
    width: 36px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}
.c_socials a:hover {
    border-color: #121718;
    transition: 0.2s ease;
}
body.dark-mode .c_socials a:hover {
    border-color: #fff;
    transition: 0.2s ease;
}
.c_socials a:hover svg path {
    fill: #121718;
    transition: 0.2s ease;
}
body.dark-mode .c_socials a:hover svg path {
    fill: #fff;
    transition: 0.2s ease;
}
.c_socials a svg {
    height: 12px;
    width: auto!important;
    transition: 0.2s ease;
}