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

body {
    font-family: "signika", sans-serif;
    background-color: #F8F7F0;
}

html,
body {
    overflow-x: hidden;
}

.hero-wrapper {
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: url('Assets/hero_banner.png') no-repeat center center/cover;
    height: 100vh;
}

/* navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: transparent;
    color: white;
    font-family: "Signika", sans-serif;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
    transition: transform 0.3s ease;
}

.hamburger.active {
    transform: rotate(90deg);
}

.nav-links {
    display: flex;
    gap: 25px;
    transition: all 0.3s ease-in-out;
}

.nav-links a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-4px);
    color: #f7e26b;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.call p {
    font-size: 12px;
    color: white;
    margin: 0;
}

.call span {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.login-btn {
    background-color: #f7e26b;
    color: black;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.login-btn:hover::before {
    left: 0;
}

.login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(247, 226, 107, 0.4);
}

#logoutBtn .login-btn {
    margin-left: 10px;
}

.mobile-only {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #f7e26b;
        display: none;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links a {
        margin: 10px 0;
        color: black;
    }

    .nav-links a:hover {
        color: #000;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease forwards;
    }

    .nav-right {
        display: none;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-login-logout {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .mobile-login-logout .login-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero content */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 100px 60px;
    color: white;
}

.hero-content {
    max-width: 600px;
}

.tag {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid white;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtext {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-btn {
    background-color: white;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

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

.fade-in {
    animation: fadeInNav 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInNav {
    to {
        opacity: 1;
    }
}

.typing-text {
    color: #f7e26b;
    font-weight: 700;
    font-size: 48px;
    white-space: nowrap;
    border-right: 2px solid #f7e26b;
    overflow: hidden;
}

.typing-text::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #f7e26b;
    margin-left: 3px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .typing-text {
        font-size: 30px;
    }

    .subtext {
        font-size: 16px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .typing-text {
        font-size: 26px;
    }

    .subtext {
        font-size: 15px;
    }
}


/* about us section  */

.features-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: #ffffff;
    flex: 1;
    min-width: 250px;
    padding: 30px 25px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrap {
    background-color: #f7e26b;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 15px;
    color: black;
}

.feature-card>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-card hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}


.corner-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        gap: 30px;
    }
}

/* info section  */

.section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.left-column {
    position: relative;
    flex: 1 1 45%;
}

/* .left-column {
    clip-path: path('M 20,0 L 280,0 A 20,20 0,0,1 300,20 L 300,230 A 20,20 0,0,1 280,250 L 200,250 A 20,20 0,0,0 180,270 L 180,380 A 20,20 0,0,1 160,400 L 20,400 A 20,20 0,0,1 0,380 L 0,20 A 20,20 0,0,1 20,0 Z');
    width: 300px;
    height: 300px;
} */


.left-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background-color: #f1e76a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}


.left-column img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge {
    position: absolute;
    bottom: -20px;
    left: 32px;
    background-color: #f1e76a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.badge p:first-child {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.badge p:last-child {
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

.right-column {
    flex: 1 1 50%;
}

.right-column button {
    background: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.right-column h2 {
    font-size: 45px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.right-column h2 span {
    display: block;
}

.right-column p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-item {
    flex: 1 1 45%;
}

.feature-item svg {
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

/* marque */
.marquee-container {
    background-color: #f5f7f0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
    font-family: 'Signika', sans-serif;
}

.marquee-track {
    display: inline-block;
    animation: scroll-left 25s linear infinite;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #1f2937;
}

.marquee-track span {
    margin: 0 1.5rem;
    color: #4b835f;
    -webkit-text-stroke: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* product section  */
.product-section-bg {
    background-color: #5B8C51
}

.product-cards-section {
    font-family: 'Signika', sans-serif;
    background-color: #5B8C51;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-cards-header {
    /* text-align: center; */
    margin-bottom: 2rem;
}

.product-cards-header button {
    background: #eef0d4;
    border: none;
    border-radius: 999px;
    padding: 0.25rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-cards-header h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #ffffff;
}

.product-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.product-card-img {
    border-radius: 20px;
    margin-bottom: 20px;
}

.gunny_bag {
    width: 100px;
    height: 160px;
    object-fit: cover;
}

.product-card {
    padding: 10px;
    background-color: #F8F7F0;
}

.product-card>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-card hr {
    border: none;
    border-top: 1px solid #ccc;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.product-corner-tag {
    background-color: #f7e26b
}

.product-card>.cost {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product-card>.cost>span {
    margin-right: 10px;
}


/* customized product section  */
.custom-product-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f7f7eb;
    padding: 60px 20px;
    gap: 30px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .custom-product-section {
        flex-direction: row;
        justify-content: center;
        padding: 80px;
    }
}

.custom-product-left {
    max-width: 500px;
    text-align: center;
}

.custom-product-left h2 {
    font-size: 28px;
    color: #1b1b1b;
    margin-bottom: 15px;
}

.custom-product-left p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.custom-product-left button {
    background-color: #f7e26b;
    color: black;
    margin-top: 20px;
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-product-left button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.custom-product-left button:hover::before {
    left: 0;
}

.custom-product-left button {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(247, 226, 107, 0.4);
}

.custom-product-right img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* Modal Styling */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-modal-content {
    background: #f3fff4;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: scaleIn 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-modal-content h2 {
    text-align: center;
    color: #155e2d;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.custom-modal-content input,
.custom-modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
}

.custom-modal-content textarea {
    min-height: 80px;
    resize: vertical;
}

.custom-modal-content button {
    width: 100%;
    padding: 12px;
    background: #49b96d;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-modal-content button:hover {
    background: #3ea85f;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #155e2d;
}

@keyframes scaleIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0px 40 40px 40px;
}

/* achievements section */

.achievements-section-bg {
    background-color: #F8F7F0;
}

.achievements-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}


.achievements-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.card img {
    width: 100px;
    max-width: 100%;
    border-radius: 12px;
}

.card-left,
.card-right {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-center {
    flex: 1;
    min-width: 250px;
}

.card-center h2 {
    font-size: 24px;
    margin: 0 0 10px;
}

.card-center h2 span {
    display: block;
    font-size: 18px;
    color: #666;
}

.card-center p {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-left,
    .card-right {
        flex: unset;
        width: 100%;
        justify-content: flex-start;
    }

    .card img {
        width: 80px;
    }

    .card-center h2 {
        font-size: 20px;
    }
}

.achievements-cards-header {
    margin-bottom: 2rem;
}

.achievements-cards-header button {
    background: #eef0d4;
    border: none;
    border-radius: 999px;
    padding: 0.25rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.achievements-cards-header h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #000000;
}

.achievements-cards-header h2>span {
    color: #16a34a;
}

.achievements-starter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.achievements-starter>div>img {
    height: 150px;
}

.achievements-starter>div>h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
}

.achievements-starter>div>p {
    font-size: 12px;
    font-weight: 300;
    color: #4b5563;
}

.achievements-section>h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}


.achievements-section>hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0 40px 0;
}

/* carousel section  */
.carousel-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    padding: 0.3em 0.6em;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    display: inline-block;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

@media (max-width: 600px) {
    .carousel-slide {
        height: 250px;
    }
}


.our-team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.our-team-cards>div {
    flex: 1 1 220px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: #fff;
}

.our-team-cards>div>img {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.our-team-cards>div>h4 {
    font-family: 'Rum Raisin', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 5px 0;
}

.our-team-cards>div>p {
    font-family: 'Rum Raisin', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.our-team-cards>div:nth-child(2) {
    transform: translateY(-25px);
}

.our-team-cards>div:hover {
    transform: translateY(-15px);
}

.our-team-cards>div:nth-child(2):hover {
    transform: translateY(-35px);
}

@media (max-width: 768px) {
    .our-team-cards {
        flex-direction: column;
        align-items: center;
    }

    .our-team-cards>div {
        max-width: 90%;
        transform: none !important;
    }

    .our-team-cards>div:hover {
        transform: translateY(-10px);
    }
}


.team-details {
    margin-top: 20px;
}

.download-btn {
    background-color: #f7e26b;
    color: black;
    margin-top: 20px;
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.download-btn:hover::before {
    left: 0;
}

.download-btn {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(247, 226, 107, 0.4);
}

/* feedback section  */
.feedback-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #F7F7EB;
    overflow: hidden;
    gap: 30px;
}

@media (min-width: 768px) {
    .feedback-section {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        padding: 60px 80px;
    }
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0 40px 0;
}

.feedback-left {
    max-width: 480px;
    text-align: center;
    z-index: 2;
}

.feedback-left h2 {
    font-size: 28px;
    color: #1B1B1B;
    margin-bottom: 15px;
}

.feedback-left p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}


.feedback-left button {
    background-color: #f7e26b;
    color: black;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feedback-left button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.feedback-left button:hover::before {
    left: 0;
}

.feedback-left button {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(247, 226, 107, 0.4);
}

.feedback-right {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.feedback-image {
    max-width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
}


.question {
    position: absolute;
    bottom: -40px;
    font-size: 36px;
    color: #62a941;
    animation: floatUp 6s linear infinite;
    opacity: 0.8;
    z-index: 1;
}


@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-500px) scale(1.2);
        opacity: 0;
    }
}

/* Feedback Modal  */
.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #f3fff4;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: scaleIn 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    text-align: center;
    color: #155e2d;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #155e2d;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 16px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #155e2d;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #49b96d;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #3ea85f;
}

@keyframes scaleIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* contact us section  */

.contact-us-section {
    background-color: #f7e26b;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 90px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-us-section>ul {
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.contact-us-section>ul>li {
    font-family: "Signika", sans-serif;
    color: #404A3D;
    font-size: 12px;
    list-style-type: disc;
    font-weight: 400;
}

.contact-us-section>ul>li:first-child {
    list-style: none;
}

.contact-us {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-us>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-us>div>div {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.contact-us>div>span {
    font-family: "Signika", sans-serif;
    font-size: 12px;
}

@media (max-width: 768px) {
    .contact-us-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 30px 20px;
    }

    .contact-us-section>ul>li:first-child {
        list-style-type: disc;
    }

    .contact-us-section>ul {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        padding-left: 20px;
    }

    .contact-us {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .contact-us>div {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-us-section>ul {
        flex-direction: column;
        gap: 10px;
    }

    .contact-us {
        gap: 15px;
    }

    .contact-us>div>span {
        font-size: 11px;
    }
}



/* footer section  */

.footer {
    background-color: #fefef9;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    padding: 15px 10px 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 20px;
}

.footer-desc {
    font-family: "signika", sans-serif;
    font-size: 15px;
    color: #404A3D;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons>div {
    background-color: #F8F7F0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* .social-icons i {
    font-size: 18px;
    color: #333;
    background-color: #f3f3ec;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons i:hover {
    background-color: #d9d9d0;
} */

.footer-right {
    flex: 2;
    min-width: 300px;
}

.footer-heading {
    font-family: "Signika", sans-serif;
    font-size: 27px;
    color: #404A3D;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-info div {
    min-width: 150px;
}

.footer-info h4 {
    font-family: "signika", sans-serif;
    color: #404A3D;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-info p {
    font-family: "signika", sans-serif;
    font-size: 14px;
    color: #404A3D;
    line-height: 1.6;
}

hr {
    margin: 40px auto 20px;
    border: none;
    border-top: 1px solid #ccc;
    width: 100%;
}

.footer-bottom {
    font-family: "Signika", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #444;
}

.footer-links a {
    font-family: "Signika", sans-serif;
    color: #444;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}



/* login page  */

.login-form-span {
    font-size: 25px;
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #f7e26b;
    color: black;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* product page  */

.product-section {
    background: #f9f9f4;
    color: #666666;
    font-family: 'Signika', sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    align-items: flex-start;
}


.product-image {
    flex: 1 1 45%;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}


.product-info {
    flex: 1 1 50%;
}

.product-info h1 {
    color: #5B8C51;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-weight: normal;
    font-size: 1.1rem;
}

.product-info h3 span {
    display: block;
    color: #666;
    margin-top: 5px;
}

.product-info p {
    margin: 16px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.product-info h2 {
    color: #333;
    font-size: 1.8rem;
}

.product-info h2 span {
    font-size: 1rem;
    color: #666;
}

.combo {
    font-size: 1rem;
}

.combo .save {
    color: #5B8C51;
    font-weight: bold;
}

.features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features li {
    margin-bottom: 6px;
}

.buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 20px 0;
}

.buy {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #5B8C51;
    background: #5B8C51;
    color: white;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.buy:hover {
    transform: translateY(-5px);
    background: #5B8C51;
    color: white;
}

/* .details {
    background: white;
    color: #5B8C51;
  } */

.quantity {
    display: flex;
    align-items: center;
    gap: 6px;
}

.quantity button {
    background: none;
    border: 1px solid #5B8C51;
    padding: 4px 10px;
    font-size: 18px;
    color: #5B8C51;
    cursor: pointer;
}

.quantity input {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 16px;
}

.sizes {
    margin: 20px 0;
}

.sizes p {
    margin: 0 0 10px 0;
}

.sizes button {
    margin-right: 10px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    padding: 8px 14px;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.sizes button:hover {
    transform: translateY(-5px);
    background: #5B8C51;
    color: white;
}

.about h4 {
    margin-bottom: 10px;
}

.about ul {
    padding-left: 20px;
}

.about li {
    margin-bottom: 6px;
}

.back-arrow {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.back-arrow:hover {
    transform: translateX(-4px);
}

.back-arrow img {
    width: 20px;
    height: 20px;
}


/* admin page  */
.admin-container {
  display: flex;
}

.sidebar {
  width: 200px;
  background-color: #eaf1e6;
  padding: 20px;
  height: 100vh;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2 {
  color: #3d6b2f;
}

.sidebar button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background-color: #67864d;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.sidebar button:hover {
  background-color: #55743f;
}

.main-content {
  flex: 1;
  padding: 20px;
}

h3 {
  color: #3d6b2f;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background-color: white;
}

th, td {
  border: 1px solid #aaa;
  padding: 10px;
  text-align: left;
}
