body {
    font-family: Arial, sans-serif;
    background-color: #f9f9fc;
}

.front-bottom {
    background: rgb(266, 66, 35);
    color: white !important;
    font-size: 15px;
}
.front-bottom:hover {
    background: rgb(266, 66, 35);
    color: white !important;
    font-size: 15px;
}

.hero-section {
    padding: 60px 0;
}

.hero-title {
    font-weight: 700;
    font-size: 2rem;
}

.hero-subtitle {
    color: #00707f;
    font-weight: 600;
}

.product-cards {
    position: relative;
}

.product-card {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.9rem;
    width: 140px;
    margin-bottom: 15px;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.promo-box {
    background: #fefefe;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-custom {
    border-radius: 8px;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle.payments {
    background-color: #e3f2fd;
}

.icon-circle.checkout {
    background-color: #fff3e0;
}

.icon-circle.analytics {
    background-color: #fce4ec;
}

.feature-card .icon {
    font-size: 36px;
}

.icon-circle.payments .icon {
    color: #2196f3;
}

.icon-circle.checkout .icon {
    color: #ff9800;
}

.icon-circle.analytics .icon {
    color: #f44336;
}

.feature-card h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

.earn-section {
    padding: 60px 0;
}

.earn-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.earn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.earn-icon {
    font-size: 22px;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.icon-green {
    background: #e6f9f0;
    color: #0f9d58;
}

.icon-orange {
    background: #fff4e6;
    color: #f57c00;
}

.icon-yellow {
    background: #fffbe6;
    color: #f4b400;
}

.icon-blue {
    background: #e6f0ff;
    color: #3367d6;
}

.icon-pink {
    background: #ffe6f2;
    color: #e91e63;
}

h2 span {
    color: #0f9d58;
}

.earn-card h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.earn-card p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.text-center {
    text-align: center;
}

.footer {
    background-color: #121d28;
    color: #d1d9e0;
    padding: 50px 0;
    font-size: 14px;
}

.footer h5 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.footer .logo-text span {
    color: #ff4223;
}

.footer a {
    color: #d1d9e0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    /* Makes links take up full width for easier clicking */
    margin-bottom: 10px;
}

.footer a:hover {
    color: #ffffff;
}

.footer .social-icons .btn {
    background-color: transparent;
    border: 1px solid #d1d9e0;
    color: #d1d9e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition:
        background-color 0.3s,
        border-color 0.3s;
}

.footer .social-icons .btn:hover {
    background-color: #ff4223;
    border-color: #ff4223;
}

.footer .contact-info a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer .contact-info a i {
    font-size: 16px;
    margin-right: 10px;
}

.footer .support-btn {
    background-color: #ff4223;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.footer .support-btn:hover {
    background-color: #ff4223;
}

.footer .footer-bottom {
    border-top: 1px solid #ff4223;
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #000;
}

.footer .scroll-to-top i {
    font-size: 18px;
}

.hexagon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hexagon-item {
    position: relative;
    width: 180px;
    height: 207.846px;
    /* 180 * sqrt(3) / 2 */
    margin: 10px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
    transform: scale(0.9);
}

.hexagon-item:hover {
    transform: scale(1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hexagon-content {
    z-index: 1;
    color: #333;
    padding: 20px;
}

.hexagon-item .icon {
    font-size: 3rem;
    color: #ff4223;
    margin-bottom: 10px;
}

.hexagon-item h5 {
    font-weight: bold;
    margin-bottom: 5px;
}

.hexagon-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Specific icon colors */
.hexagon-item:nth-child(1) .icon {
    color: #f44336;
}

/* Red */
.hexagon-item:nth-child(2) .icon {
    color: #2196f3;
}

/* Blue */
.hexagon-item:nth-child(3) .icon {
    color: #ff9800;
}

/* Orange */
.hexagon-item:nth-child(4) .icon {
    color: #4caf50;
}

/* Green */
.hexagon-item:nth-child(5) .icon {
    color: #9c27b0;
}

/* Purple */
.hexagon-item:nth-child(6) .icon {
    color: #795548;
}

.gateway-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.gateway-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.gateway-card img {
    max-height: 40px;
    object-fit: contain;
}

.video-section {
    background: #f9fbfd;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e14222, #e14222);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 80px rgba(0, 150, 255, 0.2);
}

.video-circle::before,
.video-circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.video-circle::before {
    width: 12px;
    height: 12px;
    top: 25%;
    right: 18%;
}

.video-circle::after {
    width: 10px;
    height: 10px;
    bottom: 25%;
    left: 18%;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0fb0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a2bff;
    font-size: 22px;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: #0fb0ff;
    color: #fff;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.payments {
    background: #4cafef;
}

.checkout {
    background: #ff9800;
}

.analytics {
    background: #4caf50;
}

.marketing {
    background: #e91e63;
}

.mobile {
    background: #2196f3;
}

.support {
    background: #9c27b0;
}

/* Brown */

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .hexagon-item {
        width: 150px;
        height: 173.205px;
        /* 150 * sqrt(3) / 2 */
    }
}
