@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", 'Barlow Semi Condensed', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bgOrange: #e84949;
}

#wrapper {
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    padding-top: 100px;
}

.spacer {
    height: 80px; /* Adjust based on your navbar height */
}

.navbar {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.company-name-logo,
.logo-container {
    display: flex;
    align-items: center;
}

.name-logo {
    width: 60px;
    height: 60px;
}

.logo {
    height: 80px;
    width: 80px;
}

.logo-text {
    font-size: 1rem;
    margin-left: 0.5rem;
}

.nav-items {
    display: flex;
    gap: 2rem;
}

.nav-items div {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.nav-items div a {
    color: black;
}

a {
    text-decoration: none;
}

.nav-items div:hover {
    transition: 0.8s;
    font-weight: bold;
}


@media screen and (max-width: 1024px) {
    .container {
        padding: 10px 5%;
        padding-top: 100px;
    }
    
    .nav-items {
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 5%;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .nav-items {
        width: 100%;
        justify-content: space-around;
    }
    
    .faded-text {
        font-size: 10vw;
    }
}

@media screen and (max-width: 480px) {
    .logo, .name-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    
    .nav-items div {
        font-size: 0.9rem;
    }
    
    .faded-text {
        font-size: 12vw;
    }
}

html {
    scroll-padding-top: 180px;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Dropdown links */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change color of dropdown link when dropdown is hovered */
.dropdown:hover>a {
    color: var(--bgOrange);
}


/* content */

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.services h1, h2 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: #343d68;
}

.services {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    overflow: hidden;
    position: relative;
    padding: 0 20px; /* Adjust padding to allow space for arrows */
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px;
    padding: 20px;
    flex: 0 0 calc(50% - 40px); /* Ensure two cards per view */
    box-sizing: border-box; /* Ensure padding and margin are included in the width */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.arrow {
    position: absolute;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #e84949;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow {
    left: -1px; /* Position arrow outside the slider box */
}

.right-arrow {
    right: -1px; /* Position arrow outside the slider box */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .slider {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
        /* Ensure one card per view */
        margin: 10px 0;
        /* Add margin between cards */
    }

    .left-arrow,
    .right-arrow {
       display: none;
    }
}

@media (max-width: 768px) {
    .slider {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
        /* Ensure one card per view */
        margin: 10px 0;
        /* Add margin between cards */
    }

    .left-arrow,
    .right-arrow {
       display: none;
    }
}


@media (max-width: 480px) {
    .slider {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
        /* Ensure one card per view */
        margin: 10px 0;
        /* Add margin between cards */
    }

    .left-arrow,
    .right-arrow {
        display: none;
        /* Hide arrows on small screens */
    }
}





/* Footer section */
.footer {
    background-color: #e84949;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #f4f4f4;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0%;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;

}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
    color: #fff;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;

}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #c3425b;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: #c3425b;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #c3425b;
}

.footer-social-link.linkedin {
    height: 50px;
    left: 1.5px;
    top: 11px;
    width: 50px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 50px;
    left: 62px;
    top: 5.5px;
    width: 50px;
}

.footer-social-link.instagram {
    height: 50px;
    left: 128px;
    top: 15px;
    width: 50px;
}

.footer-social-link.github {
    height: 55px;
    left: 172px;
    top: 5.5px;
    width: 55px;
}

.footer-copyright {
    background-color: #d84949;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}




/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {

    /* smartphones, Android phones, landscape iPhone */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {

    /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:801px) {
    /* tablet, landscape iPad, lo-res laptops ands desktops */

}

@media (min-width:1025px) {
    /* big landscape tablets, laptops, and desktops */

}

@media (min-width:1281px) {
    /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}

@media (min-width: 568px) {
    /* .footer-content-column {
        width: 49.99%;
    } */
}