/* https://coolors.co/fb6bc1-000100-495f41-b4d2e7-fff7f5 */

:root {


    /* --primary-color: #fb6bc1; */
    /* --secondary-color: #fff7f5; */

    /* --bg1: #fb6bc1; */
    /* --bg2: #6290C3; */

    --box-bg-1: #05185c96;
    --icon-1: #c09dff;



    --logo-left: #ff5757;
    --logo-right: #8c52ff;
    --background: #c855a0;
    --box-light: #DBDAEA;
    --black: #0A0908;
    --white: #DBFCFF;
}

html {
    scroll-behavior: smooth;
}

.logo-gradient {
    background-image: linear-gradient(0deg, var(--logo-left), var(--logo-right));
}

body {
    /* background-color: var(--bg1); */
    /* background-image: linear-gradient(180deg, var(--logo-left), var(--logo-right)); */
    background-color: var(--background);
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--black);
    font-family: sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .nav-link {
    font-size: 1.25rem;
}

.navbar i {
    margin: 0rem 2rem 0rem 1rem;
}

.navbar .burger-bottom i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .navbar .burger-bottom {
        border-top: 1px solid #ffffff12;
        margin-top: 1rem;
        padding-top: 0.5rem;
    }

    .navbar-nav {
        margin-top: 0.5rem;
    }

}

@media (min-width: 767px) {
    #navbarNav .navbar-nav {
        justify-content: space-evenly;
        width: 100%;
        margin: 0!important;
        padding: 0rem 5rem;
    }

    .navbar i {
        margin: 0rem 1rem;
    }
}


.nav-logo img {
    height: 2.5rem;
    width: auto;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--bg2);
}

@media (max-width: 767px) {
    .hero {
        background-image: url('/images/hero_mobile_image.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (min-width: 768px) {
    .hero {
        background-image: url('/images/hero_desktop_image.jpg'); /* Add your desktop image */
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

#hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.hero .logo {
    transition: none;
    width: fit-content;
    position: absolute;
    /* top: 25%; */
    top: 56vw;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: LOGOANIM forwards ease-in-out 2s;
    z-index: 100;
}


@keyframes LOGOANIM {
    0% {
        opacity: 0;
        transform: translate(-50%, 50%) scale(0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


.hero .logo img {
    width: 65vw;
    animation: ROCKANIM 5s ease-in-out infinite;
    border-radius: 50%;
    border: 4px solid #ffffff94;
}

@keyframes ROCKANIM {
    0% {
        rotate: 0;
    }

    25% {
        rotate: -2deg;
    }

    50% {
        rotate: 2deg;
    }

    100% {
        rotate: 0;
    }
}


.hero h1 {
    position: absolute;
    bottom: 2.2rem;
    text-align: center;
    padding: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--white);
    font-size: 2.2rem;
    z-index: 100;
    opacity: 0;
    animation: HEROTEXTANIM 2s 2s ease-in-out forwards;
}

@keyframes HEROTEXTANIM {
    0% {
        opacity: 0;
        transform: translateY(35%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FONTS */
.hero-font {
    font-family: "Titillium Web", Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.heading-font {
    font-family: "Titillium Web", Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}

.cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 15px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #45a049;
}

#cookie-banner {
    display: none;
}


.logo img {
    width: 100%;
    height: auto;
}

.divider {
    border: 2px solid #e4e5f0;

}

.section-fade {
    width: 100%;
    height: 15px;
    position: absolute;
    transform: translateY(-1px);
    z-index: 100;
    /* background-image: linear-gradient(180deg, #ffffff1f, #00000000); */
}

.hero-fade.section-fade {
    background-image: linear-gradient(180deg, #ffffff52, #c5559e);
}


section:nth-of-type(even) {
    /* background-color: var(--bg2); */

    /* background-image: linear-gradient(180deg, var(--logo-left), var(--logo-right)); */
    color: var(--white);
}

section:nth-of-type(odd) {
    /* background-color: var(--bg1); */

    /* background-image: linear-gradient(180deg, var(--logo-left), var(--logo-right)); */
    color: var(--bg2);
}


section h2 {

    font-weight: 500;
}

h2 i {
    font-size: 2rem;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}

.box {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    background-color: var(--box-light);
    padding: 1rem;
    /* border-radius: 1rem; */
    color: var(--black);
    /* max-width: none !important; */
    margin: auto;
}


.box i {
    color: var(--logo-right);
}


.outline {
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

.service-card {
    /* background-color: #fff7f5a6; */
    /* background-color: var(--box-bg-1); */
    /* border: 1px solid #0000007d; */

    /* background-color: #a6548c; */

    /* background-image: linear-gradient(156deg, var(--logo-left), var(--logo-right)); */
    background-color: var(--box-light);
    border: 1px solid #00000047;
    border-radius: 2rem;
    color: var(--black);
    height: 16rem;
}

.service-card i {
    color: var(--logo-right);
}

.about-image {
    width: 100%;
}

.about-image img {
    width: inherit;
    height: auto;
    border: 1px solid black;
    border-radius: 1rem;
}

.step-holder {
    margin-top: 3rem;
}

.step {
    margin: 2rem 0rem;
    border-radius: 1rem;
    padding: 1rem;
    background-image: linear-gradient(118deg, #ff575714, #8c52ff1f);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.step i {
    color: var(--logo-right);
}

.step .card-title {
    display: flex;
    align-items: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(5%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}

#testimonialCarousel {
    height: 13rem;
    display: flex;
    align-items: center;
}

.testimonials .container.box {
    height: 19rem;
}

section.pad {
    padding: 2rem 1.5rem !important;
}

section {
    padding: 2rem 0rem !important;
}

.contact-actions {
    display: grid;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background-image: linear-gradient(118deg, #ff575714, #8c52ff1f);
    border: 1px solid #00000047;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    color: var(--black);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0.125em 0.75em;
    color: var(--black);
}

.contact-btn i {
    font-size: 1.75rem;
    color: var(--logo-right);
}

.contact-btn-label {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-btn-detail {
    font-size: 0.9rem;
    opacity: 0.75;
}

@media (min-width: 576px) {
    .contact-actions {
        grid-template-columns: repeat(2, 1fr);
        max-width: 42rem;
    }

    .contact-actions .contact-btn:first-child {
        grid-column: 1 / -1;
    }
}

footer {
    background-color: #333333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #ff5757;
    /* Color from your palette */
}



@media (min-width: 460px) {
    .hero .logo {
        top: 40vw;
    }

    .hero .logo img {
        width: 50vw;
        max-width: 20rem;
    }
}

@media (min-width: 600px) {
    .hero .logo {
        top: 18rem;
    }
}

@media (min-width: 992px) {

    section {
        padding: 2rem 7rem !important;
    }

    .box {
        border-radius: 2rem;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }
    .about-image img {
        width: 50%;
        margin: 3rem 0rem 2rem;
    }

    .services {
        margin-top: 2rem;
    }

}

/* Bootstrap container max_widths customly applied for .box */
@media (min-width: 576px) {
    .box {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .box {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .box {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .box {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .box {
        max-width: 1320px;
    }
}