/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'FiraGO';
}

a {
    text-decoration: none;
    color: inherit;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Regular.woff2') format('woff2'),
        url('../FiraGO-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.container.header-content {
    height: 115px;
}
.not-full-width {
    width: 1170px;
    margin: 0 auto;
}

header {
    box-shadow: 0px 0px 3px #ddd, -2px -2px 3px #ddd;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
}

/* Header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.main-banner {
    padding-top: 20px;
    display: flex;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 150px;
    height: auto;
}


/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu ul li {
    margin-right: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 900;
    font-feature-settings: 'case';
}

.nav-menu ul li a:hover {
    color: #5c762d;
    /* Green Hover */
}

/* Login Button */
.login-btn {
    background-color: #fafafa;
    color: #171717;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-feature-settings: 'case';
    font-weight: 900;
    border: 1px solid #e0e0e0;
    margin-right: 70px;
    font-size: 15px;
}

li.social-icon svg {
    width: 32px;
}

.custom-select-wrapper {
    position: absolute;
    right: 5px;
    color: #171717;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

html {
    scroll-padding-top: 170px;
    /* Adjust this value based on your sticky header height */
}

.merchant-join span:first-child {
    min-width: 250px;
}

.login-btn:hover {
    color: #000000;
    background-color: #e8e8e8;
}

.main-banner-img img {
    width: 100%;
}

.main-banner-content {
    display: flex;
    gap: 70px;
    animation: fade-in 0.5s;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 5px;
    text-align: center;
}

h2 {
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 20px;
}

section.why-choose-us {
    animation: fade-in 0.7s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #f9f9f9;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon {
    margin-bottom: 20px;
}

main section:nth-child(odd) {
    background: #fafafa;
}

.nav-menu li img {
    padding-right: 5px;
    max-height: 17px;
    display: inline-flex;
    align-items: center;
    position: relative;
    top: 2px;
}


h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    margin-bottom: 30px;
}

.main-banner-txt p {
    padding: 20px;
    border-radius: 10px;
    line-height: 21px;
}

img.cscart_icon {
    max-width: 85px;
}

li.social-icon {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-banner-txt h3 {
    padding: 20px;
    text-align: center;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #5c762d;
}

.icon {
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin-top: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-feature-settings: 'case';
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background-color: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eaeaea;
}

.container.header-content {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.footer-columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-size: 18px;
    color: #101010;
    margin-bottom: 20px;
    border-bottom: 2px solid #607c27;
    display: inline-block;
    padding-bottom: 5px;
    width: 250px;
    text-align: center;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    color: #777;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #607c27;
}

.footer-logo-social {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    width: 120px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.footer-bottom a {
    color: #607c27;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h3 {
        width: auto;
    }
}

.merchant-join {
    text-align: center;
    padding: 60px 0;
    display: flex;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    font-weight: 600;
    align-items: center;
}

.merchant-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.merchant-stat h1 {
    font-size: 64px;
    color: #101010;
}

.merchant-stat a {
    font-size: 20px;
    color: #1d9ff8;
    font-weight: 900;
    text-decoration: none;
    line-height: 31px;
    letter-spacing: 0.2px;
}

.merchant-info>div {
    flex: 1;
}

.merchant-stat p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.merchant-description p {
    font-size: 16px;
    max-width: 600px;
    text-align: left;
    background: #fff;
    color: #171717;
    padding: 20px;
    border-radius: 10px;
    line-height: 30px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

.feature-card {
    margin-bottom: 0px;
}

.footer {
    padding: 0px;
    box-shadow: 0px 0px 3px #ddd, 1px 1px 1px #ddd;
}

img.select-flag {
    width: 22px;
}

.custom-select-trigger {
    width: 22px;
}

.burger-menu.active span {
    background-color: #68841f;
}

.ecommerce-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ecommerce-platforms img {
    width: 170px;
}

.logo-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    font-weight: 600;
}

.logo-item img {
    max-width: 100%;
    height: 60px;
    display: flex;
    margin: 0 auto;
    object-fit: cover;
    margin-bottom: 15px;
}

a.view_all {
    background: #fafafa;
    padding: 15px 20px;
    font-size: 16px;
    color: #171717;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    border: 1px solid #e0e0e0;
}

.project .logo-item img {
    height: 150px;
}

.logo-grid.project {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.logo-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .merchant-info {
        flex-direction: column;
        text-align: center;
    }

    .merchant-description p {
        text-align: center;
    }
}

.login-container {
    display: flex;
    margin: 0 auto;
    animation: fade-in 0.7s;
    align-items: center;
    justify-content: center;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 30px 20px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f9f9f9;
}

.form-container h3 {
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
    color: #101010;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-weight: 600;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 5px;
}

.options a {
    text-decoration: none;
    color: #007bff;
}

.login-button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #5b722b;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-feature-settings: 'case';
    font-family: 'FiraGO';
}

.login-button:hover {
    background-color: #5b722bc2;
}

.social-login {
    text-align: center;
    margin: 20px 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input:invalid {
    border: 2px solid #ddd;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.left-column {
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #f9f9f9;
    text-align: left;
}

.left-column h4 {
    margin: 17px 0;
}

.left-column h4:first-child {
    margin-top: 0;
}

.left-column li.social-icon {
    margin-top: 15px;
}

h3.contact-h3 {
    text-align: center;
    margin-bottom: 30px;
}

.right-column {
    width: 100%;
}

.right-column iframe {
    width: 100%;
}

/* Style for filled input (valid) */
input:valid {
    border: 2px solid #5b722b;
    background-color: #ccffcc;
}

.input-group input {
    font-family: firago;
}

.social-button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #101010;
    cursor: pointer;
}

.social-button.facebook {
    color: #3b5998;
}

.social-button.twitter {
    color: #1da1f2;
}

.social-button.google {
    color: #db4437;
}

.signup {
    text-align: center;
}

.signup p {
    margin-top: 10px;
}

.signup a {
    color: #007bff;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}

/* Hide the original select element */
.hidden {
    display: none;
}

/* Custom select wrapper styles */

.custom-select {
    position: relative;
    width: 100%;
    background: white;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 24px;
    padding: 0;
    gap: 5px;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    display: none;
    z-index: 99;
    animation: fade-in 0.25s;
}

.custom-option {
    cursor: pointer;
    display: flex;
    align-items: center;
}


.custom-option:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown when open */
.custom-select.open .custom-options {
    display: block;
    margin-top: 5px;
}

@keyframes fade-in {
    from {
        opacity: .3;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: .3;
        transform: scale(.5);
    }
}

.hidden {
    display: none;
}

/* Burger Menu Styling */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    background-color: #101010;
    height: 3px;
    width: 32px;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .merchant-join {
        background-color: transparent;
        box-shadow: unset;

    }

    .hidden-mobile {
        display: none;
    }

    .container {
        padding: 40px 10px;
    }

    .custom-select {
        margin-bottom: 3px;
        display: flex;
        align-items: center;
    }


    .custom-select-wrapper {
        border: 1px solid transparent;
        position: relative;
        right: 0px;
    }

    .login-container {
        width: 100%;
    }

    .image-container {
        position: absolute;
        opacity: 0.1;
        z-index: 1;
        top: 10px;
    }

    .form-container {
        z-index: 2;
    }

    .main-banner-img {
        position: relative;
        opacity: 0.3;
        z-index: 1;
    }

    .main-banner-img img {
        width: 100vw;
    }

    .main-banner-txt {
        width: 100vw;
        z-index: 2;
        position: absolute;
    }

    .main-banner-txt p {
        text-align: center;
    }

    .not-full-width {
        width: 100vw;
    }

    section.main-banner {
        padding-top: 20px;
    }

    .features-grid {
        padding: 10px;
    }

    .merchant-join {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .merchant-join span:first-child {
        min-width: unset;
        margin-right: unset;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .container.header-content {
        padding-top: 10px;
        padding-bottom: 10px;
    }



}

/* Small Screen Adjustments */
@media (max-width: 480px) {
    .logo-img {
        max-width: 130px;
    }


    .nav-menu li {
        font-size: 14px;
    }

    .login-btn {
        font-size: 12px;
        padding: 10px 15px;
    }
}

@media (min-width: 767px) {
    div#partner>p {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

@media (min-width: 1000px) {
    .hidden-desktop {
        display: none;
    }

    .main-banner-txt h3 {
        padding: 20px 60px;
    }
}




@media (max-width: 1124px) {
    .nav-menu {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 115px;
        left: 0;
        padding: 20px;
        border-top: 1px solid #ddd;
    }
    .nav-menu.active {
        display: flex;
        animation: fade-in 0.25s;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .burger-menu {
        display: flex;
    }

}

@media screen and (max-width: 1124px) and (min-width: 768px) {
    .custom-select-wrapper {
        position: relative;
    }
    .login-btn {
        position: absolute;
        right: 10px;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}