:root {
    /* Color Variables */
    --primary-color: #C9FB01;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --section-cyan: #C0E9E2;
    --section-pink: #F2B4C3;
    --background-color: #f5f5f5;

    --sec-dark: #1E2D2F;

    --text-color: #1E2D2F;
    --text-white: #fff;
    --link-color: #2980b9;
    --border-color: #ccc;

    /* Font Variables */
    --font-family: "Be Vietnam Pro", sans-serif;
    --font-sm: 12px;
    --font-md: 14px;
    --font-base: 16px;
    --font-lg: 20px;
    --font-xl: 32px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;

    /* Spacing Variables */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    /* Transition */
    --transition-duration: 0.3s;
    --transition-timing-function: ease-in-out;

    /* Widths */
    --max-width-container: 1320px;
    --width-sidebar: 300px;

}

/* global */
body {
    font-family: var(--font-family);
}

section {
    width: 100%;
    padding: calc(var(--spacing-md) * 2) var(--spacing-md);
}

.container {
    max-width: var(--max-width-container);
    margin: 0 auto;
}

.btn {
    font-size: var(--font-base);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
}

.btn:hover {
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-white {
    background-color: #fff;
    color: var(--text-color);
}


.d-flex {
    display: flex;
}

.dfc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dfb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dfig {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* section 1 */
.topbar {
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    color: var(--text-color);
}

.topbar p {
    text-align: center;
}

.hero {
    background-color: var(--sec-dark);
    color: var(--text-white);
}

.hero .menu__main ul {
    list-style: none;
}

.hero .menu__main ul a {
    text-decoration: none;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;

}

.hero .menu__middle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero .commission {
    justify-content: center;
}



.hero .hero__content .left {
    flex: 1;
}

.hero .title {
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 1.25;
}

.hero .title span {
    font-size: 84px;
    color: var(--primary-color);
}

.hero .cont1 {
    font-size: 24px;
    font-weight: 500;
    max-width: 520px;
   
}

.hero .cont2 {
    font-size: 17px;
    font-weight: 500;
    max-width: 520px;
    margin-bottom: 28px;
}

.sectitle {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
}

.sectitle span {
    color: #EEB9D7;
}

.share {
    background-image: url('../images/share-bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.share .subcontent {
    font-size: 18px;
    color: #502274;
    line-height: 2.3;
}

/* ================ FAQs ===================== */



.faq-container {
    margin: 20px auto;
}

.faq-header {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    padding: 10px;
    cursor: pointer;
}

.faq-header-title {
    font-weight: 500;
}

.faq-desp-content {
    padding: 0 1rem 2rem 1rem;
}

.faq-header:hover {
    box-shadow: 0 2px 8px lightgray;
}

.ri-add-line {
    font-weight: bold;
}

.faq-desp {
    overflow: hidden;
    height: 0px;
}

.faq-open .faq-header,
.faq-open .faq-desp {
    background-color: #1E2D2F;
    color: white;
    border-radius: 0;
}

.faq-item.faq-open {
    background: transparent;
}

.faq-open .faq-desp {
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
}

.faq-open .ri-add-line {
    transform: rotate(45deg);
}

.faq-item,
.faq-header,
.ri-add-line,
.faq-header-title,
.faq-desp,
.faq-desp-content {
    transition: 0.1s;
}

.faq-item {
    margin-bottom: 10px;
    background-color: #FFFFFF;
    border-radius: 14px;
    width: 100%;
}

.faq-open .faq-header {
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.contactsec {
    background-image: url("../images/line3.png");
    background-repeat: no-repeat;
    background-position: top top;
    background-size: cover;
}

.ml12 {
    font-weight: 200;
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 0.5em;
}

.ml12 .letter {
    display: inline-block;
    line-height: 1em;
}

@media screen and (max-width:425px) {
    .hero .title span {
        font-size: 32px;
    }
}

.charlist {
    list-style-type: lower-alpha;
    padding-left: 48px;
    margin-bottom: 16px;
}

.list {
    list-style-type: disc;
    padding-left: 48px;
    margin-bottom: 16px;
}

.list li,
.listcircle li,
.charlist li {
    margin-bottom: 6px;
}

.listcircle {
    list-style-type: circle;
    padding-left: 48px;
    margin-bottom: 16px;
}

.faq-desp .list {
    list-style-type:decimal;
    font-weight: 400;
    font-size: 14px;
}

/* .header {
    position: fixed;
} */
.header {
    height: 100px;
    /* Example header height */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease-in-out;
    border-bottom: 1px transparent;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(126, 126, 126, 0.446);
}

.header.sticky {
    height: 70px;
}



    
.parent-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
    max-width: 1200px;
}

.offer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.offer-section-below {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: right;
    margin-bottom: 20px;
}




.red-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.emphasis-animation {
    animation: emphasis-loop 1.5s infinite;
    align-items: center;
}

@keyframes emphasis-loop {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.offer-image {
    width: 150px;
    margin-right: 20px;
}

.offer-text {
    font-size: 2xl;
    font-weight: bold;
    margin-top: 10px;
}

.offer-box2 {
    width: fit-content;
    text-align: center;
    background-color: var(--section-cyan);
    border: 6px solid pink;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer-box2 p {
    margin: 0;
    color: #004d40;
}

.offer-box2 span {
    color: #00796b;
}

@keyframes emphasisAnimation {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.animate-emphasis {
    animation: emphasisAnimation 3s infinite;
}


/* General styles for the counter container */
ul.counter {
    /* width: 75%; */
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: space-around; /* Space out the items evenly */
}

/* Style for each counter item */
ul.counter li {
    flex: 1; /* Ensures all items take up equal space */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the content */
    padding: 10px; /* Adds space around the items */
    box-sizing: border-box; /* Ensures padding is included in the total width/height */
}

/* Style for the numeric part of the counter */
ul.counter li .frame,
ul.counter li div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px; /* Set a fixed width */
    height: 80px; /* Set a fixed height */
    background-color: #C9FB01; /* Background color */
    border-radius: 4px; /* Rounded corners */
    color: var(--sec-dark); /* Text color */
    font-size: 24px; /* Font size for the numbers */
    font-weight: bold; /* Makes the numbers bold */
}

ul.counter li span:first-child{
    font-size: 20px;
    border-radius: 2px;
    color: var(--sec-dark);
    background-color: var(--light-yellow);
    padding: 5px 0;
}

/* Style for the time unit labels */
ul.counter li span:last-child {
    font-size: 12px; /* Smaller font size for labels */
    color: black; /* Text color for labels */
    text-transform: uppercase; /* Uppercase labels */
    margin-top: 5px; /* Space above the labels */
}
/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .offer-section-below {
        flex-direction: column;
        text-align: center;
    }
    .offer-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    ul.counter {
        justify-content: space-between; /* Adjust spacing between counter items */
    }
    ul.counter li {
        flex: none; /* Allows items to shrink below their original flex size */
        padding: 5px; /* Reduces padding on smaller screens */
    }
    ul.counter li .frame,
    ul.counter li div {
        width: 60px; /* Reduced width */
        height: 60px; /* Reduced height */
        font-size: 18px; /* Reduced font size */
    }
    ul.counter li span:last-child {
        font-size: 10px; /* Reduced font size for labels */
    }
}
