/* ===== Premium Services Section ===== */
.premium-services {
    width: 96%;
    margin: 60px auto;
}

/* ===== Tabs ===== */
.premium-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
}

.premium-tab {
    flex: 1;
    text-align: center;
    /* height: 55px; */
    padding: 13px;
    margin-bottom: 10px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    background: transparent;
    border: 0.5px solid #000;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 2%;
}

.premium-tab:hover {
    background-color: #00ff84;
    color: #0a0a0a;
}

.premium-tab.active {
    background-color: #000;
    color: #00ff84;
    font-weight: 600;
}

/* ===== Service Card ===== */
.premium-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    margin-bottom: 50px;
    padding: 45px 55px;
    border: 1px solid #fff;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background: linear-gradient(-135deg, #0b1a0f 0%, #0B9444 30%, #061a10 100%);
    box-shadow: 0 8px 30px rgba(0, 255, 132, 0.1);
    transition: all 0.4s ease;
    animation: premiumGradientFlow 8s ease infinite;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 255, 132, 0.3);
}

/* ===== Gradient Animation ===== */
@keyframes premiumGradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Image Section ===== */
.premium-image {
    /* flex: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
    height: 350px;
}

/* ===== Text Section ===== */
.premium-content {
    flex: 1;
    color: #d8d8d8;
}

.premium-content h3 {
    font-size: 2rem;
    color: #00ff84;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.premium-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b9b9b9;
    margin-bottom: 20px;
    max-width: 700px;
}

/* ===== Bullet Points ===== */
.premium-points {
    list-style: none;
    padding-left: 0;
}

.premium-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #e6e6e6;
    transition: color 0.3s ease;
    line-height: 1.7;
}

.premium-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../IMAGES/7-list-item.svg") no-repeat center center;
    background-size: contain;
}

.premium-points li:hover {
    color: #00ff84;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .premium-tab {
        /* height: 70px; */
        align-items: center;
        /* padding-top: 10px; */
    }

    .premium-card {
        flex-direction: column;
        text-align: center;

        padding: 35px;
        height: 100%;
    }

    .premium-image {
        margin-bottom: 25px;
    }

    .premium-content p {
        margin: 0 auto 20px;
    }

    .premium-points li {
        text-align: left;
        margin: 0 auto;
        max-width: 400px;
    }
}

/* ==============================
   G7 DIFFERENCE SECTION STYLING
================================= */

.g7-difference-section {
    background: linear-gradient(145deg, #023a1f, #0a2d1a);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    width: 96%;
    margin: 50px auto;
    /* height: 85dvh; */
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
}

/* Subtle striped background pattern */
.g7-difference-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
            rgba(0, 255, 132, 0.04) 0px,
            rgba(0, 255, 132, 0.04) 1px,
            transparent 2px,
            transparent 10px);
    z-index: 0;
}

.g7-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.g7-container h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.g7-container h2 span {
    color: #00ff84;
}

/* ===== Grid Layout ===== */
.g7-difference-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10%;
}

/* ===== Boxes ===== */
.g7-box {
    flex: 1 1 240px;
    background: linear-gradient(180deg, rgba(0, 255, 132, 0.05), rgba(0, 255, 132, 0.02));
    border: 1px solid rgba(0, 255, 132, 0.25);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(0, 255, 132, 0.05);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 25px rgba(0, 255, 132, 0.35);
    border-color: #00ff84;
}

.g7-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 255, 132, 0.35);
    border-color: #00ff84;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .g7-difference-grid {
        flex-direction: column;
        align-items: center;
    }

    .g7-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .g7-container h2 {
        font-size: 1.6rem;
    }
}


/* ==============================
   FLOATING BOX ANIMATION
================================= */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Apply floating animation with staggered timing */
.g7-box {
    animation: floatUpDown 4.5s ease-in-out infinite;
}

/* make them move opposite to each other */
.g7-box:nth-child(odd) {
    animation-delay: 0s;
}

.g7-box:nth-child(even) {
    animation-delay: 2.25s;
}

/************** Expert services */
.financial-section {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background-image: url("../IMAGES/7-pattern-bg.png");
    background-size: cover;
    background-position: center;
    background-color: #000;
    margin-bottom: 3%;
}

.financial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.); */
    /* overlay only */
    z-index: 0;
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e2e2e2;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 28px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #fff;
    color: #000;
}