@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --text-dark: #333333;
    --text-light: #767268;
    --white: #ffffff;
    --max-width: 1400px;
    --header-font: "Bebas Neue", sans-serif;
    --primary-color: #0073ff;
}

* {
    padding-left: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

nav {
    background-color: white;
    height: 100px;
    position: sticky;
    padding-inline: 3rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav__header {
    padding: 0;
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
}

.logo-container {
    position: relative;
    width: 180px;
    height: 40px;
    overflow: hidden;
}

.logo-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation-name: cycleLogos;
    animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.logo-container img:nth-child(1) {
    animation-delay: 0s;
}

.logo-container img:nth-child(2) {
    animation-delay: 3s;
}

.logo-container img:nth-child(3) {
    animation-delay: 6s;
}

@keyframes cycleLogos {
    0% {
        opacity: 0;
    }
    33.3% {
        opacity: 1;
    }
    66.6% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    display: none;
}

.nav__links {
    position: static;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
    background-color: transparent;
    transition: 0.5s;
    z-index: -1;
    transform: none;
}

.nav__links.open {
    transform: translateY(0);
}

.nav__links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px;
    padding-block: 5px;
    position: relative;
    transition: color 0.3s ease-in-out;
    border-bottom: 4px solid transparent;
}

.nav__links a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.nav__links a:hover::after {
    transform: scaleX(1);
}

.nav__links a:hover {
    color: var(--text-dark);
    border-color: #bc881b;
}

.nav__btns {
    display: flex;
    flex: 1;
}

.nav__btns .btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

@keyframes blink {
    0% {
        color: black;
    }
    50% {
        color: black;
    }
    100% {
        color: black;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.animated-shop {
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px 0px 20px;
    bottom: 0;
    color: black;
    border-radius: 8px;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    display: inline-block;
    transition: all 0.3s ease-in-out;
    animation: blink 1s infinite, pulse 1.5s infinite;
}

.animated-shop:hover {
    transform: scale(1.2);
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(110, 80, 20, .4), inset 0 -2px 5px 1px rgba(139, 66, 8, 1), inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

#signup-link {
    display: none;
}

#login-link {
    display: none;
}

#signup-btn {
    background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
    color: black;
}

#signup-btn:hover {
    background-color: rgb(36, 33, 33);
    transform: scale(1.08);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(120, 120, 120, 0.4), inset 0 -2px 5px 1px rgba(180, 180, 180, 1), inset 0 -1px 1px 3px rgba(220, 220, 220, 1);
}

#login-btn {
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    color: black;
}

#login-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(110, 80, 20, .4), inset 0 -2px 5px 1px rgba(139, 66, 8, 1), inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

.btn::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}

.sign__up {
    background-color: transparent;
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-right: 10px;
}

.sign__up:hover {
    background-color: #0056b3;
}

.nav__links li.dropdown {
    position: relative;
}

.nav__links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
}

.nav__links .dropdown-item {
    position: relative;
}

.nav__links .sub-dropdown {
    display: none;
    background-color: #f1f1f1;
    padding-left: 0px;
}

.nav__links li:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.nav__links .dropdown-item:hover .sub-dropdown {
    display: block;
}

.nav__links .dropdown-content a,
.nav__links .sub-dropdown a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: black;
}

.nav__links .dropdown-content a:hover,
.nav__links .sub-dropdown a:hover {
    background-color: #ddd;
}

.nav__links .dropdown-item a {
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding-inline: 2rem;
        height: auto;
        flex-wrap: wrap;
    }
    .nav__header {
        flex: 1;
    }
    .nav__menu__btn {
        display: block;
        color: black;
        font-size: 2rem;
    }
    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: start;
        background-color: white;
        padding: 1rem;
        display: none;
        gap: 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    .nav__links.open {
        display: flex;
        background-color: rgba(255, 255, 255, 0.9);
    }
    .nav__links li {
        width: 100%;
        text-align: center;
    }
    .nav__links a {
        width: 100%;
        display: block;
        padding: 5px 15px;
        margin: auto;
    }
    .nav__btns {
        display: none;
    }
    #signup-link {
        display: block;
        margin: 10px auto;
    }
    #login-link {
        margin: 5px auto;
        display: block;
    }
    .animated-shop {
        transform: scale(1);
        font-size: 0.85rem;
        padding: 6px 12px;
        white-space: nowrap;
        animation: blink 1.5s infinite;
        max-width: 120px;
        text-align: center;
    }
    .animated-shop:hover {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding-inline: 1.5rem;
    }
    .nav__logo img {
        width: 30%;
    }
    .nav__menu__btn {
        font-size: 2rem;
    }
    .nav__links {
        top: 100%;
    }
    .nav__links a {
        margin: auto;
    }
}

@media screen and (max-width: 600px) {
    .nav__logo img {
        width: 30%;
    }
    .nav__links {
        top: 100%;
    }
    .animated-shop {
        font-size: 0.8rem;
        padding: 4px 8px;
        max-width: 100px;
    }
    nav {
        padding-inline: 1rem;
    }
    .nav__menu__btn {
        font-size: 1.5rem;
    }
    .nav__links {
        top: 100%;
        padding: 0.5rem;
    }
    .nav__links a {
        margin: auto;
        font-size: 0.9rem;
        padding: 7px;
    }
    .animated-shop {
        font-size: 0.8rem;
        padding: 5px 10px;
        max-width: 110px;
    }
}

@media screen and (max-width: 1024px) {
    .nav__links .dropdown-content {
        position: relative;
        width: 100%;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav__links .dropdown-item {
        width: 100%;
    }
    .nav__links .dropdown-content a {
        padding-left: 20px;
        background-color: #f1f1f1;
    }
    .nav__links li:hover .dropdown-content {
        display: block;
    }
    .nav__links .sub-dropdown {
        padding-left: 20px;
        display: none;
    }
    .nav__links .dropdown-item:hover .sub-dropdown {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .nav__logo img {
        width: 40%;
    }
    .nav__menu__btn {
        font-size: 1.5rem;
    }
    .nav__links {
        top: 100%;
    }
    .animated-shop {
        font-size: 0.8rem;
        padding: 4px 8px;
        max-width: 100px;
    }
}

@media screen and (max-width: 320px) {
    .nav__logo img {
        width: 50%;
    }
}

.header__container {
    max-width: var(--max-width);
    margin: auto;
    padding-block: 2rem;
    padding-inline: 1rem;
    display: grid;
    gap: 1rem;
    /* This will apply to rows as well */
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 5px;
    /* UPDATED Grid Definition */
    grid-template-rows: auto 1fr;
    /* First row for new cards, second for existing content */
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    /* Changed from center to start for better row alignment */
}

.new__cards__container {
    grid-column: 1 / -1;
    /* Span both columns */
    grid-row: 1 / 2;
    /* Place in the first row */
    display: flex;
    justify-content: center;
    /* Center cards, especially when they wrap or if space allows */
    flex-wrap: wrap;
    gap: 1.5rem;
    /* Space between cards */
    /* margin-bottom: 2rem; /* Gap is handled by header_container gap */
    width: 100%;
}

.new__card {
    background-color: #f0f0f0;
    /* Light grey background - THIS IS THE DEFAULT FOR OTHER CARDS */
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    /* Match image border-radius */
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-basis: 650px;
    flex-grow: 1;
    max-width: 700px;
    aspect-ratio: 700 / 450;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.new__card {
    flex-basis: 650px;
    max-width: 700px;
    aspect-ratio: 700 / 450;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.new__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .new__cards__container .new__card:first-child {
    background-image: linear-gradient(to bottom, white, rgb(240, 56, 56));
    background-color: transparent;
    border-color: #cc0000;
}

.new__cards__container .new__card:nth-child(2) {
    /* CSS 'gold' is #FFD700. You can use a hex code for a specific gold shade. */


/* background-image: linear-gradient(to bottom, white, rgb(67, 52, 234));
    background-color: transparent; */


/* Ensure gradient is not overridden by solid color */


/* border-color: rgb(67, 52, 234); */


/* Optional: A 'goldenrod' or darker gold border */


/* }  */

.header__image {
    position: relative;
    isolation: isolate;
    /* UPDATED Grid Placement */
    grid-row: 2 / 3;
    /* Move to the second grid row */
    grid-column: 2 / 3;
    /* Keep in the second column */
}

.header__image::before {
    position: absolute;
    content: "";
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 100%;
    opacity: 0.5;
    z-index: -1;
}

.header__image img {
    width: 700px;
    margin-inline: auto;
}

.header__image__card {
    position: absolute;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header__image__card span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.header__image__card-1 {
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    color: black;
    top: 20%;
    left: 5%;
    transform: translate(-50%, -50%);
}

.header__image__card-2 {
    background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
    color: black;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.header__image__card-3 {
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    color: black;
    top: 90%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.header__image__card-4 {
    background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
    color: black;
    top: 10%;
    right: 20%;
    transform: translate(50%, -50%);
}

.header__image__card-5 {
    background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
    color: black;
    top: 90%;
    right: 20%;
    transform: translate(50%, -50%);
}

.header__image__card-6 {
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    color: black;
    top: 35%;
    right: 20%;
    transform: translate(50%, -50%);
}

.header__content {
    margin: auto;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.header__content h1 {
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--header-font);
    color: var(--text-dark);
    line-height: 4.0rem;
    text-align: center;
}

.header__content p {
    text-align: justify;
    text-justify: inter-word;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.header__content :is(h1,
p) {
    text-align: left;
}

.download-btn {
    position: relative;
    display: inline-block;
    padding: 9px 18px;
    font-size: 19px;
    font-weight: bold;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    margin-left: 120px;
}

.download-btn-getstarted {
    width: 30%;
    position: relative;
    display: inline-block;
    padding: 12px 18px;
    font-size: 19px;
    font-weight: bold;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    margin-bottom: 40px;
    margin-top: 0;
}

.download-windows {
    color: rgb(0, 94, 255);
    border: 2px solid rgb(0, 94, 255);
}

.download-windows i {
    color: rgb(0, 115, 255);
}

.download-android {
    color: green;
    border: 2px solid green;
}

.download-android-getstarted {
    color: black;
    border: 2px #b47e11;
}

.download-android i {
    color: #049b2a;
}

.download-windows::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1E90FF, #00BFFF, #4169E1, #4682B4);
    border-radius: 10px;
    z-index: -1;
    animation: borderRotate 2s linear infinite;
}

.download-android::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    color: white;
    background: linear-gradient(45deg, #34c759, #00ff7f, #28a745, #34c759);
    border-radius: 10px;
    z-index: -1;
    animation: borderRotate 2s linear infinite;
}

.download-android-getstarted::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    color: black;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border-radius: 10px;
    z-index: -1;
    animation: borderRotate 2s linear infinite;
}

.download-windows:hover {
    color: white;
    background-color: rgb(0, 115, 255);
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    border: none;
}

.download-android:hover {
    color: white;
    background-color: #049b2a;
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    border: none;
}

.download-android-getstarted:hover {
    color: black;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(110, 80, 20, .4), inset 0 -2px 5px 1px rgba(139, 66, 8, 1), inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    border: none;
}

.download-btn:hover i {
    color: white;
}

.download-btn span {
    position: relative;
    z-index: 1;
}

.download-btn-getstarted span {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1200px) {
    .header__container {
        grid-template-columns: 1fr;
        /* Becomes single column */
        /* grid-template-rows: auto auto auto; /* Adjust if new cards, content, image stack */
        align-items: center;
        /* Can revert to center for single column */
        text-align: center;
    }
    .header__image {
        /* grid-area: auto; /* This was in your original media query, remove if using explicit rows/cols */
        /* UPDATED Grid Placement for stacking */
        grid-row: 3 / 4;
        /* Third item in the stack */
        grid-column: 1 / -1;
        /* Span full width */
        text-align: center;
    }
    .header__image img {
        width: 100%;
        /* Was already in your media query */
    }
    .new__card {
        flex-basis: 90%;
        /* Make cards take more width on smaller screens before maxing out */
    }
    .header__image__card {
        font-size: 1rem;
        padding: 0.5rem 0.15rem;
        width: 20;
    }
    .header__image__card-1 {
        background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
        color: black;
        top: 20%;
        left: 17%;
        transform: translate(-50%, -50%);
    }
    .header__image__card-2 {
        background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
        color: black;
        top: 50%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    .header__image__card-3 {
        background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
        color: black;
        top: 90%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    .header__image__card-4 {
        background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
        color: black;
        top: 10%;
        right: 20%;
        transform: translate(50%, -50%);
    }
    .header__image__card-5 {
        background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
        color: black;
        top: 90%;
        right: 20%;
        transform: translate(50%, -50%);
    }
    .header__image__card-6 {
        background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
        color: black;
        top: 35%;
        right: 20%;
        transform: translate(50%, -50%);
    }
    .header__content {
        /* ... existing responsive styles ... */
        text-align: center;
        /* Ensure text alignment */
        padding: 1rem;
        /* UPDATED Grid Placement for stacking */
        grid-row: 2 / 3;
        /* Second item in the stack */
        grid-column: 1 / -1;
        /* Span full width */
    }
    .header__content h1 {
        text-align: center;
        margin: auto;
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .header__content p {
        font-size: 1rem;
        text-align: justify;
    }
    .download-btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}

@media screen and (max-width: 768px) {
    .header__image img {
        max-width: 100%;
    }
    .header__content {
        /* order: -1; */
        /* If using flex fallback or specific ordering needed for some reason */
    }
    .header__content h1 {
        text-align: center;
        margin: auto;
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .header__image__card {
        font-size: 1rem;
        padding: 0.5rem 0.5rem;
    }
    .header__image__card-1 {
        background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
        color: black;
        top: 20%;
        left: 20%;
        transform: translate(-50%, -50%);
    }
    .header__image__card-2 {
        background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
        color: black;
        top: 50%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    .header__image__card-3 {
        background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
        color: black;
        top: 90%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    .header__image__card-4 {
        background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
        color: black;
        top: 10%;
        right: 20%;
        transform: translate(50%, -50%);
    }
    .header__image__card-5 {
        background: linear-gradient(160deg, #808080, #a9a9a9, #dcdcdc, #bfbfbf, #808080);
        color: black;
        top: 90%;
        right: 20%;
        transform: translate(50%, -50%);
    }
    .header__image__card-6 {
        background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
        color: black;
        top: 35%;
        right: 22%;
        transform: translate(50%, -50%);
    }
    .new__card {
        flex-basis: 95%;
        /* Take almost full width on small mobile */
        max-width: 100%;
        /* Ensure it doesn't exceed container */
        /* padding: 1rem; */
        /* aspect-ratio will maintain height */
    }
    .download-btn {
        font-size: 17px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 600px) {
    .header__image img {
        margin-top: 20px;
        max-width: 100%;
    }
    .header__content h1 {
        text-align: center;
        margin: auto;
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .header__image__card {
        display: none;
        font-size: 1rem;
        padding: 0.5rem 0.5rem;
    }
    .download-btn {
        font-size: 17px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .header__container {
        text-align: center;
        padding-inline: 0.5rem;
        display: flex;
        flex-direction: column;
    }
    .header__content {
        /* order: -1; */
        text-align: center;
    }
    .header__content h1 {
        text-align: center;
        margin: auto;
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .header__content p {
        font-size: 0.9rem;
        text-align: justify;
    }
    .header__image {
        order: 1;
        text-align: center;
    }
    .header__image img {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    .header__image__card {
        display: none;
        font-size: 0.9rem;
        padding: 0.5rem;
        text-align: center;
    }
    .download-btn {
        font-size: 16px;
        padding: 7px 14px;
        width: 100%;
        display: block;
        margin: 10px auto;
        text-align: center;
    }
}

@media screen and (max-width:320px) {
    .header__content h1 {
        font-size: 26px;
        line-height: 1.5rem;
    }
    .header__content p {
        text-align: start;
    }
}

@media (max-width: 1200px) {
    .download-btn-getstarted {
        width: 40%;
        font-size: 18px;
        padding: 16px 16px;
    }
}

@media (max-width: 992px) {
    .download-btn-getstarted {
        width: 45%;
        font-size: 17px;
        padding: 14px 14px;
    }
}

@media (max-width: 768px) {
    .download-btn-getstarted {
        width: 60%;
        font-size: 16px;
        padding: 14px 12px;
    }
}

@media (max-width: 576px) {
    .download-btn-getstarted {
        width: 80%;
        font-size: 15px;
        padding: 10px 10px;
    }
}

@media (max-width: 400px) {
    .download-btn-getstarted {
        width: 90%;
        height: auto;
        font-size: 14px;
        padding: 10px 8px;
    }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    background-image: url();
    height: 1050px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

h1 {
    color: #1E293B;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

:root {
    --secondary-color: #6c757d;
    --card-background: #fff;
    --card-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.4s;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 20px 10px;
    margin: auto;
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    margin: auto;
    overflow: hidden;
}

.text-content,
.image-container {
    opacity: 0;
    max-width: 50%;
    transform: translateX(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.image-container {
    transform: translateX(-100%);
}

.text-content {
    margin: 20px 0;
    text-align: justify;
    transform: translateX(100%);
    animation: slideInText 1s ease-in-out forwards;
}

.feature-image {
    width: 60%;
    max-width: 600px;
    display: block;
    margin: auto;
}

.feature-image1 {
    width: 70%;
    max-width: 600px;
    display: block;
    margin: auto;
}

.feature-image2 {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: auto;
}

.text-content p {
    color: #333;
}

.text-content li {
    font-size: 1.2rem;
    color: #333;
}

.text-content h2 {
    font-weight: bold;
    font-size: 40px;
}

.feature-container.visible .image-container,
.feature-container.visible .text-content {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-container {
        flex-direction: column;
        text-align: center;
    }
    .text-content,
    .image-container {
        max-width: 80%;
    }
    .text-content h2 {
        font-size: 32px;
    }
    .text-content p {
        font-size: 1rem;
    }
    .feature-image,
    .feature-image1,
    .feature-image2 {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1rem;
    }
    .feature-container {
        flex-direction: column;
        text-align: center;
    }
    .text-content,
    .image-container {
        max-width: 90%;
    }
    .text-content h2 {
        font-size: 28px;
    }
    .text-content li {
        font-size: 1rem;
    }
    .feature-image,
    .feature-image1,
    .feature-image2 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .features-grid {
        padding: 10px 5px;
    }
    .text-content h2 {
        font-size: 24px;
    }
    .text-content p,
    .text-content li {
        font-size: 0.9rem;
        margin: 0;
        text-align: justify;
    }
    .text-content {
        margin: 10px 0;
    }
    .feature-image,
    .feature-image1,
    .feature-image2 {
        margin: auto;
        width: 100%;
        max-width: 400px;
    }
    .staff {
        width: 80%;
    }
    .inventory {
        width: 100%;
        max-width: 500px;
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-top: 2rem;
}

p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.bg-image {
    background: url('./assets/Business-management.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    width: 1600px;
}

.bg-image h1,
p {
    color: white;
}

.pricing {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 1.5rem;
}

.plan {
    position: relative;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    width: 12000px;
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plan.selected::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #3498db;
    border-radius: 15px;
    z-index: -1;
}

.plan:hover {
    transform: scale(1.1);
    z-index: 10;
}

.pricing:hover .plan:not(:hover) {
    transform: scale(0.9);
    opacity: 0.7;
}

.plan h2 {
    font-size: 2.0rem;
    margin-bottom: 5px;
    color: #333;
}

.plan {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #3498db;
}

.price {
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 500px;
    color: #b47e11;
    display: inline-block;
}

.price-table-div {
    display: grid;
    grid-template-columns: 50% 50%;
    color: #333;
}

.price-table-1 {
    text-align: left;
    color: #333;
    font-size: 1rem;
    margin-right: 10px;
}

.price-table-2 {
    margin-left: 10px;
    text-align: left;
    color: #333;
    font-size: 1rem;
}

.price-table-1 tr {
    border-bottom: 1px solid #3498db;
}

.price-table-1 td {
    border-bottom: 1px solid #3498db;
    padding: 10px;
}

.price-table-2 tr {
    border-bottom: 1px solid #3498db;
}

.price-table-2 td {
    border-bottom: 1px solid #3498db;
    padding: 10px;
}

.yearly-plan {
    font-size: 12px;
    color: #333;
    margin-left: 5px;
    vertical-align: middle;
}

ul.features {
    list-style-type: disc;
    text-align: left;
    padding: 0;
    margin-bottom: 1rem;
}

ul.features li {
    display: flex;
    align-items: left;
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 0;
}

ul.features li i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.plan button {
    margin-top: 1rem;
    border: none;
    width: 20%;
    float: right;
    padding: 12px 35px;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    color: black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.plan button:hover {
    background-color: #3498db;
}

.plan.popular {
    border: 2px solid white;
    position: relative;
    transform: scale(1.05);
}

.plan:hover {
    box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
}

@media (max-width: 1600px) {
    .bg-image {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .pricing {
        padding: 0 1rem;
    }
    .plan {
        width: 100%;
    }
    .price {
        margin-left: 0;
        display: block;
        text-align: center;
        margin-top: 0.5rem;
    }
    .yearly-plan {
        display: block;
        margin-left: 0;
        text-align: center;
    }
    .price-table-div {
        grid-template-columns: 1fr;
    }
    .price-table-1,
    .price-table-2 {
        margin: 0 auto;
        width: 90%;
    }
    .plan button {
        width: 80%;
        float: none;
        display: block;
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .bg-image {
        padding: 40px 15px;
    }
    .bg-image h1 {
        font-size: 1.8rem;
    }
    .bg-image p {
        font-size: 1rem;
    }
    .plan h2 {
        font-size: 1.6rem;
    }
    .price {
        font-size: 1.6rem;
    }
    .price-table-1,
    .price-table-2 {
        font-size: 0.9rem;
    }
    .plan button {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .bg-image {
        padding: 30px 10px;
    }
    .bg-image h1 {
        font-size: 1.5rem;
    }
    .bg-image p {
        font-size: 0.9rem;
    }
    .plan h2 {
        font-size: 1.4rem;
    }
    .price {
        font-size: 1.4rem;
    }
    .price-table-1,
    .price-table-2 {
        font-size: 0.8rem;
    }
    .plan button {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 200px;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.dropdown-menu.active {
    display: flex;
}

.profile__logo {
    width: 80px;
    height: 80px;
    border-radius: 5%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.profile__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 5px;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
}

.dropdown-menu ul li {
    padding: 10px;
    text-align: center;
}

.dropdown-menu ul li a {
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown-menu ul li:hover {
    background-color: #f5f5f5;
}

.faq-container {
    width: 80%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    font-family: 'Poppins', sans-serif;
}

h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    transform: scale(1.02);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.faq-question::after {
    content: '\25BC';
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .faq-container {
        width: 95%;
        padding: 20px;
    }
    .faq-question {
        font-size: 18px;
    }
    .faq-answer {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        width: 95%;
        padding: 15px;
    }
    .faq-question {
        font-size: 16px;
        padding: 10px;
    }
    .faq-answer {
        font-size: 14px;
    }
}

.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 20px;
}

.section-title {
    text-align: center;
    color: #6B7280;
    text-transform: uppercase;
    font-size: 1.175rem;
    font-weight: 500;
    margin-bottom: 64px;
}

.gold-login {
    font-weight: bolder;
}

.footer-section {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a, #111);
    color: #fff;
    padding: 50px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    gap: 30px;
}

.footer-widget {
    flex: 1;
    min-width: 280px;
    margin-bottom: 30px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    max-width: 220px;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 15px;
    text-align: center;
}

.footer-widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.footer-widget h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: #b47e11;
}

.footer-social-icon {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.copyright-area {
    background: #0d0d0d;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    color: #878787;
}

.copyright-area p {
    font-size: 12px;
    margin-bottom: 0;
}

.copyright-area a {
    color: #b47e11;
    text-decoration: none;
}

.copyright-area a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.links-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.links-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-grid ul li {
    margin-bottom: 8px;
}

.links-grid ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.links-grid ul li a:hover {
    color: r#b47e11;
}

@media(max-width: 1024px) {
    .footer-container {
        font-size: 22px;
    }
    .footer-widget h3 {
        font-size: 22px;
    }
    .footer-text {
        font-size: 20px;
    }
    .footer-logo img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .footer-widget h3 {
        font-size: 26px;
        margin: auto;
        margin-bottom: 7px;
    }
    .links-grid {
        margin: auto;
    }
    .footer-section {
        font-size: 22px;
    }
    .footer-text {
        font-size: 20px;
    }
    .footer-logo img {
        max-width: 230px;
    }
    .social-icon {
        width: 35px;
        height: 35px;
    }
    .copyright-area {
        font-size: 12px;
    }
    .quick-links ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0;
        list-style: none;
        text-align: center;
    }
    .quick-links ul li {
        display: flex;
        justify-content: center;
    }
    .quick-links ul li a {
        font-size: 22px;
        text-decoration: none;
        padding: 5px;
    }
}

@media (max-width: 320px) {
    .footer-widget h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }
    .footer-container {
        justify-content: center;
        align-items: center;
    }
    .links-grid {
        font-size: 16px;
        margin: auto;
    }
    .footer-section {
        margin: auto;
        font-size: 16px;
    }
    .footer-text {
        font-size: 16px;
    }
    .footer-logo img {
        max-width: 230px;
    }
    .social-icon {
        width: 35px;
        height: 35px;
    }
    .copyright-area {
        font-size: 12px;
    }
    .quick-links ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0;
        list-style: none;
        text-align: center;
    }
    .quick-links ul li {
        display: flex;
        justify-content: center;
    }
    .quick-links ul li a {
        font-size: 16px;
        text-decoration: none;
        padding: 5px;
    }
}

.container {
    height: auto;
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: 0.3s ease;
    text-align: center;
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.slider {
    background-color: #a9a9a9;
}

input:checked+.slider {
    background-color: #b47e11;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.invoice-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.invoice-box {
    width: 80%;
    transition: transform 0.3s ease-in-out;
}

.invoice-box img {
    border: 1px solid #4c4949;
    margin-top: 50px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 25px;
}

.toggle-label {
    margin: 0 1rem;
    font-weight: bold;
    color: #555;
}

.invoice-container {
    border-radius: 8px;
    padding: 1.5rem;
    width: 45%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
}

.thermal-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.thermal-option {
    border: 1px solid #bbb;
    border-radius: 8px;
    padding: 1.5rem;
    width: 45%;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    transition: 0.3s;
    cursor: pointer;
}

.thermal-option:hover {
    background-color: #e9ecef;
}

.a4-invoice {
    width: 60%;
    min-height: 200px;
    border: 1px solid #bbb;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.a4-invoice img {
    border: 1px solid #4c4949;
    max-width: 100%;
    height: auto;
}

.image-container {
    margin-top: 2rem;
}

.thermal-option img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
        height: auto;
    }
    .invoice-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    .invoice-container {
        width: 100%;
        min-height: auto;
        padding: 1rem;
    }
    .invoice-box {
        width: 100%;
    }
    .invoice-container {
        display: none;
    }
    .invoice-container.active {
        display: flex;
    }
    .invoice-box img {
        margin-top: 50px;
        transform: scale(1);
        max-width: 50%;
        height: auto;
        margin-bottom: 50px;
    }
}

@media (max-width: 900px) {
    .container {
        width: 100%;
        height: auto;
    }
    .invoice-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    .invoice-container {
        width: 100%;
        min-height: auto;
        padding: 1rem;
    }
    .invoice-box {
        width: 100%;
    }
    .invoice-container {
        display: none;
    }
    .invoice-container.active {
        display: flex;
    }
    .invoice-box img {
        margin-top: 50px;
        transform: scale(1);
        max-width: 50%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
        width: 100%;
        height: auto;
    }
    .invoice-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    .invoice-container {
        width: 100%;
        min-height: auto;
    }
    .invoice-box {
        width: 100%;
    }
    .invoice-container {
        display: none;
    }
    .invoice-container.active {
        display: flex;
    }
    .invoice-box img {
        margin-top: 50px;
        transform: scale(1);
        max-width: 80%;
        height: auto;
    }
}

@media (max-width:1200px) {
    html {
        overflow-x: hidden;
        font-size: 20px;
    }
}


/* @media (max-width:320px) {
  * {
    font-size: 16px;
  }
} */