/* You can add global styles to this file, and also import other style files */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
select,
input,
option,
textarea,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* remember to define focus styles! */
:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

a {
    color: var(--secondary-color);
}

a:hover,
a:focus {
    color: var(--primary-color);
    text-decoration: none;
}

/* End Clearfix */

*,
a,
button,
.btn {
    outline: none !important;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    text-decoration: none !important;
}


/* Mulish */
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-ExtraLight.ttf');
    font-weight: 200;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-ExtraBold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Black.ttf');
    font-weight: 900;
}

:root {
    /* Brand Colors */
    --primary-color: #678A38;
    --secondary-color: #1F416E;
    --light-green: #F0FFE8;

    /* Neutral Palette */
    --color-black: #000000;
    --color-dark-gray: #4E4E4E;
    --color-light-gray: #C0C0C0;
    --color-white: #FFFFFF;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary-color);
    overflow-x: hidden;
    background-color: var(--color-white);
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
}


.colorwhite {
    color: var(--color-white) !important;
}

.primary-color {
    color: var(--primary-color) !important;
}


/* Common button base */
.btn {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    user-select: none;
    transition: background-color 0.3s ease;
    box-shadow: none !important;
}

.btn i {
    padding-right: 2px;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--color-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
    background-color: #214b21 !important;
    border-color: #214b21 !important;
    color: var(--color-white) !important;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--color-white);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #3870b9 !important;
    color: var(--color-white) !important;
    border-color: #3870b9 !important;
}

.btn-border {
    background-color: var(--color-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-border:active,
.btn-border:hover,
.btn-border:focus {
    background-color: var(--light-green) !important;
    color: var(--color-white) !important;
    border-color: var(--light-green) !important;
}



/* Disabled State */
.btn:disabled {
    background-color: #4E4E4E99 !important;
    color: white !important;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.disabled {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #b2b2b2 !important;
    border-color: #b2b2b2 !important;
}



.form-group {
    margin-bottom: 1rem;
}

.form-label {
    width: 100%;
    display: inline-block;
    color: var(--color-black);
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
}

.form-control {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    height: 45px;
    border: 1px solid var(--color-light-gray);
    box-shadow: none !important;
    transition: border-color 0.3s, background 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea {
    height: auto !important;
}



.form-control::placeholder {
    color: var(--color-dark-gray);
    font-weight: 400;
    font-size: 13px;
}

::-webkit-input-placeholder {
    color: var(--color-dark-gray);
    font-weight: 400;
    font-size: 13px;
}

::-moz-placeholder {
    color: var(--color-dark-gray);
    font-weight: 400;
    font-size: 13px;
}

:-ms-input-placeholder {
    color: var(--color-dark-gray);
    font-weight: 400;
    font-size: 13px;
}

:-moz-placeholder {
    color: var(--color-dark-gray);
    font-weight: 400;
    font-size: 13px;
}




input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    background-color: var(--primary-color);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='white' d='M6.707 6l4.647-4.646a.5.5 0 0 0-.708-.708L6 5.293 1.354.646a.5.5 0 1 0-.708.708L5.293 6 .646 10.646a.5.5 0 0 0 .708.708L6 6.707l4.646 4.647a.5.5 0 0 0 .708-.708z'/></svg>") no-repeat center;
    mask-size: contain;
    cursor: pointer;
    transition: background-color 0.2s ease;
}


input:read-only {
    background: rgb(235 235 235);
}

input:read-only:focus {
    background: rgb(235 235 235);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    background-color: white !important;
}

input:-moz-autofill {
    -moz-box-shadow: 0 0 0px 1000px white inset !important;
    background-color: white !important;
}

input:-webkit-autofill {
    background-color: white !important;
}



p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}


.border-start {
    border-left: 1px solid var(--color-light-gray);
}

.border-end {
    border-right: 1px solid var(--color-light-gray);
}

.border-top {
    border-top: 1px solid var(--color-light-gray);
}

.border-bottom {
    border-bottom: 1px solid var(--color-light-gray);
}


.border-content {
    width: 100%;
    display: inline-block;
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
    padding: 30px;
}


.p-0 {
    padding: 0 !important;
}

.ptb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.plr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.p-5 {
    padding: 5px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.ptb-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.plr-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}


.p-10 {
    padding: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.plr-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}


.p-15 {
    padding: 15px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.ptb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.plr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.p-20 {
    padding: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.plr-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


.p-25 {
    padding: 25px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.ptb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.plr-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}


.p-30 {
    padding: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.ptb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.plr-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}


.p-35 {
    padding: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.ptb-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.plr-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}


.p-40 {
    padding: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.ptb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.plr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}


.p-45 {
    padding: 45px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.ptb-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.plr-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}


.p-50 {
    padding: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.plr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}


.pt-55 {
    padding-top: 55px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.ptb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.plr-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}


.pt-60 {
    padding-top: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.ptb-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.plr-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}


.pt-65 {
    padding-top: 65px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.ptb-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

.plr-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
}


.pt-70 {
    padding-top: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.ptb-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.plr-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}


.pt-75 {
    padding-top: 75px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.ptb-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.plr-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
}


.pt-80 {
    padding-top: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.ptb-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.plr-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}


.pt-85 {
    padding-top: 85px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pl-85 {
    padding-left: 85px !important;
}

.pr-85 {
    padding-right: 85px !important;
}

.ptb-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}

.plr-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
}


.pt-90 {
    padding-top: 90px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.ptb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.plr-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}


.pt-95 {
    padding-top: 95px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pl-95 {
    padding-left: 95px !important;
}

.pr-95 {
    padding-right: 95px !important;
}

.ptb-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
}

.plr-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
}


.pt-100 {
    padding-top: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}



/* Margin */

.m-0 {
    margin: 0px !important;
}

.mtb-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mlr-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mtb-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mlr-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}


.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mtb-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mlr-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}


.mt-15 {
    margin-top: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mlr-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}


.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mtb-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mlr-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}


.mt-25 {
    margin-top: 25px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mtb-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mlr-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}


.mt-30 {
    margin-top: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mtb-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mlr-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}


.mt-35 {
    margin-top: 35px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mtb-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.mlr-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}


.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mtb-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mlr-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}


.mt-45 {
    margin-top: 45px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mtb-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.mlr-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}


.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mtb-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mlr-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}


.mt-55 {
    margin-top: 55px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mtb-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.mlr-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
}


.mt-60 {
    margin-top: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mtb-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mlr-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}


.mt-70 {
    margin-top: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mtb-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}


.mt-75 {
    margin-top: 75px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mtb-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}


.mt-80 {
    margin-top: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mtb-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}


.mt-85 {
    margin-top: 85px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mtb-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
}


.mt-90 {
    margin-top: 90px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mtb-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}


.mt-100 {
    margin-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}


.fixed-header {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1020;
}

.headermain {
    width: 100%;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.headermain .navbar {
    padding: 15px 0px;
}

.headermain .navbar-brand {
    width: 200px;
}

.headermain .navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .headermain .nav-item {
    margin-right: 10px;
} */

.headermain .nav-link {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-dark-gray);
    padding: 10px 12px !important;
    display: flex;
    align-items: center;
    margin-right: 5px;
    border-radius: 5px;
}

.headermain .nav-item:last-child .nav-link {
    margin-right: 0;
}

.headermain .nav-link:hover,
.headermain .nav-item.active .nav-link,
.headermain .nav-link.active {
    color: var(--color-white);
    background-color: var(--primary-color);
}




.headermain .nav-link.speciallink {
    color: var(--color-white);
    background-color: var(--primary-color);
    font-weight: 600;
    animation: pulse-primary 3s ease-in-out infinite alternate;
    transition: background-color 0.2s, transform 0.2s;
}

@keyframes pulse-primary {

    0% {
        background-color: #B22222;
        transform: scale(1);
    }

    25% {
        background-color: #FF6347;
        transform: scale(1.02);
    }

    100% {
        background-color: #B22222;
        transform: scale(1);
    }
}




/* Avatar */
.headermain .profile-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 11px 0px var(--color-black)0001A;
    overflow: hidden;
}

.headermain .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headermain .profile-avatar i {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 400;
}

.headermain .profile-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
}

.headermain .dropdown-menu-custom {
    border-radius: 6px;
    border: none;
    box-shadow: 0px 4px 15px 0px #A69B9B40;
    right: 0;
    left: auto;
}

.headermain .dropdown-menu-custom .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    color: var(--color-dark-gray);
}

.headermain .dropdown-menu-custom .dropdown-item i {
    font-size: 20px;
    font-weight: 400;
}

.headermain .dropdown-item.active,
.headermain .dropdown-item:hover {
    color: var(--primary-color) !important;
    font-weight: 600;
    background-color: var(--light-green);
}

.headermain .dropdown-item.active i,
.headermain .dropdown-item:hover i {
    color: var(--primary-color);
    font-weight: 400;
}

.headermain .logout-item {
    color: #FF0000 !important;
    font-weight: 600;
}

.headermain .logout-item i {
    color: #FF0000;
}

.headermain .dropdown-menu-custom .dropdown-item:hover {
    background-color: #F0FFE8;
}

.headermain .profile-dropdown .btn:focus {
    box-shadow: none !important;
}


.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: remixicon !important;
    font-weight: 900;
    content: "\ea78";
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    font-weight: normal;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1020;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-black);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(197, 164, 126, 0.2);
    box-shadow: inset 0 0 0 1px rgba(197, 164, 126, 0.2);
}

.progress-wrap::after {
    color: var(--color-black);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-black);
}



.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    max-width: 100%;
    padding-right: 5%;
    padding-left: 5%;
}


.page_main {
    padding-top: 75px;
}



.section-container:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.section-container:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.15);
}


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

ul.dotsul li {
    padding: 0;
    font-size: 14px;
    color: var(--color-dark-gray);
    margin-bottom: 8px;
}

ul.dotsul li:last-child {
    margin-bottom: 0px;
}

ul.dotsul li::before {
    content: "•";
    color: var(--light-green);
    font-weight: bold;
    margin-right: 8px;
}


/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* background: linear-gradient(135deg, rgba(44, 95, 45, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%); */
}

.bg-animation span {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    animation: float 25s infinite;
    color: rgba(126, 184, 82, 0.2);
    font-size: 24px;
}

.bg-animation span i {
    animation: rotate 8s linear infinite;
}

.bg-animation span:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.bg-animation span:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bg-animation span:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
}

.bg-animation span:nth-child(4) {
    left: 80%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bg-animation span:nth-child(5) {
    left: 100%;
    animation-delay: 0s;
}

.bg-animation span:nth-child(6) {
    left: 10%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.bg-animation span:nth-child(7) {
    left: 50%;
    animation-delay: 5s;
}

.bg-animation span:nth-child(8) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 15s;
}

.bg-animation span:nth-child(9) {
    left: 30%;
    animation-delay: 6s;
}

.bg-animation span:nth-child(10) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        top: 100vh;
        opacity: 0;
        transform: translateX(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: -10%;
        opacity: 0;
        transform: translateX(20px);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}



/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.section-title h2 .highlight {
    color: var(--secondary-color);
}

.section-title p {
    font-size: 18px;
    color: var(--color-dark-gray);
    width: 90%;
    margin: 5px auto 0;
}


.contentboxes .text-content,
.contentboxes .card,
.contentboxes .image-content,
.contentboxes .image-placeholder {
    height: 100%;
}

.whitetxt .card h2,
.whitetxt .card h3,
.whitetxt .card li,
.whitetxt .card p {
    color: var(--color-white);
}

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

ul.checkmarkul li {
    color: var(--color-dark-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

ul.checkmarkul li:last-child {
    margin-bottom: 0;
}

ul.checkmarkul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6B8E23;
    font-weight: bold;
}


.image-content {
    position: relative;
    z-index: 1;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    overflow: hidden;
    background-color: var(--color-white);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    width: 100%;
    height: 380px;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.hero-section .hero {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1.2s ease;
}

.hero-section .hero h1 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #a8d5a8, #7eb3d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.hero-section .hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-section .tagline {
    font-size: 18px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-section .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-section .badge i {
    font-size: 20px;
    font-weight: 400;
}

.hero-section .features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeInUp 1.4s ease;
}

.hero-section .feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-section .feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-section .feature-card i {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #7eb852 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-section .feature-card p {
    opacity: 0.85;
    margin-bottom: 0;
}

/* Government Regulation */
.regulation {
    background: linear-gradient(135deg, #2C5F7C 0%, #1e4a5f 100%);
    color: var(--color-white);
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card h3 {
    font-size: 20px;
    margin: 0px 0 20px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.card li:last-child {
    margin-bottom: 0;
}

.card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 20px;
}

/* Problem Statement */
.problem {
    background: linear-gradient(135deg, #8FBC8F 0%, #6B8E23 100%);
    color: #1a1a1a;
}

.problem .card {
    background: rgba(255, 255, 255, 0.95);
}

.problem h2 {
    color: #2C5F7C;
}

.problem li:before {
    color: #6B8E23;
}

/* Solution */
.solution {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%) !important;
    color: #1a1a1a;
}

.solution .card {
    background: rgba(255, 255, 255, 0.95);
}

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.solution-pillar {
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #c8dac6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-pillar:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--color-white);
    border: 3px solid var(--light-green);
}

.solution-pillar h3 {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-dark-gray);
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-pillar p {
    color: var(--color-dark-gray);
    margin-bottom: 0;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #B8D4B8 0%, #A8C6A8 100%);
}

.how-it-works h2 {
    color: #2C5F7C;
}

.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.how-it-works .step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works .step-number {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    color: #6B8E23;
    margin-bottom: 15px;
}

.how-it-works .step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2C5F7C;
}

.how-it-works .step p {
    color: var(--color-dark-gray);
    margin-bottom: 0;
}



/* Admin Portal */
.admin {
    background: linear-gradient(135deg, #2C5F7C 0%, #1a4052 100%);
    color: var(--color-white);
}

.admin h2 {
    text-align: center;
    color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature p {
    margin-bottom: 0;
}

/* Farmer Experience */
.farmer {
    background: linear-gradient(135deg, #6B8E23 0%, #556B2F 100%);
    color: var(--color-white);
}

.farmer .card {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

.farmer h2 {
    color: #6B8E23;
}


/* Benefits */
.benefits {
    background: linear-gradient(135deg, #D4E7D4 0%, #B8D4B8 100%);
    color: #1a1a1a;
}

.benefits h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 30px;
    color: #2C5F7C;
}

.stakeholders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.stakeholder {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stakeholder:hover {
    transform: translateY(-8px);
}

.stakeholder-icon {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stakeholder h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2C5F7C;
}


/* Why Us */
.why-us {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1a1a1a;
}

.why-us h2 {
    color: #2C5F7C;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 95, 124, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6B8E23 0%, #2C5F7C 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(44, 95, 124, 0.25);
    border-color: #6B8E23;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    filter: grayscale(0.2);
    color: var(--secondary-color);
}

.why-number {
    font-size: 20px;
    font-weight: bold;
    color: #6B8E23;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2C5F7C;
    font-weight: 600;
}

.why-card p {
    color: var(--color-dark-gray);
    margin-bottom: 0;
}

/* Deliverables */
.deliverables {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    color: #1a1a1a;
}

.deliverables h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 30px;
    color: #2C5F7C;
}

.deliverables .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.deliverables .step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliverables .step-number {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    color: #6B8E23;
    margin-bottom: 15px;
}

.deliverables .step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2C5F7C;
}

.deliverables .step p {
    color: var(--color-dark-gray);
    margin-bottom: 0;
}


/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e3a5f 100%);
}

.contact-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-section .tagline {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 40px;
    text-align: center;
}

.contact-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h4 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 600;
}


/* Only Box Design */
.contactbox {
    text-align: center;
    opacity: 0.9;
    animation: fadeIn 1.8s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contactbox p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contactbox a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contactbox a:hover {
    border-bottom-color: var(--color-white);
}

.contactbox .contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    flex-wrap: wrap;
}

.contactbox .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.contactbox .contact-item i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Only Box Design */


/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--color-white);
    padding: 15px 0;
}

footer p {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-white);
}






.inputwithicon {
    position: relative;
}

.inputwithicon input {
    padding: 10px 40px 10px 15px;
}

.inputwithicon .inputicon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #4E4E4E;
    z-index: 99;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}


.inputwithicon.righticon {
    position: relative;
}

.inputwithicon.righticon input {
    padding: 10px 15px 10px 40px;
}

.inputwithicon.righticon .inputicon {
    left: 10px;
    right: auto;
}

.inputwithicon .inputicon i {
    color: #4E4E4E;
    opacity: 0.8;
}



/* Login */
.loginmain {
    width: 100%;
    display: inline-block;
    /* display: flex;
    height: calc(100vh - 120px);
    align-items: center;
    justify-content: center; */
}

.loginmain .logininner {
    display: flex;
}

.loginmain .left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loginmain .plant-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.loginmain .right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loginmain h1 {
    color: var(--primary-color);
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 800;
}

.loginmain .subtitle {
    color: var(--color-dark-gray);
    font-size: 18px;
    margin-bottom: 30px;
}

.loginmain .forgot-password {
    text-align: right;
    margin-top: 8px;
}

.loginmain .forgot-password a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
}

.loginmain .forgot-password a:hover {
    color: #33691E;
}

.loginmain .signup-link {
    text-align: center;
    margin-top: 15px;
    color: var(--color-dark-gray);
    font-size: 16px;
    font-weight: 500;
}

.loginmain .signup-link a {
    color: #558B2F;
    text-decoration: none;
}

.loginmain .signup-link a:hover {
    color: #33691E;
    text-decoration: underline;
}

.leafshape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.leafshape.left {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
}



/* Profile */
.profile-container {
    width: 100%;
    display: inline-block;
}

.profile-container .headbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.profile-container .headbox .title {
    color: #6b7c3f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-container .headbox .subtitle {
    color: #6b7280;
    font-size: 13px;
}

.profile-container .content {
    padding: 32px 24px;
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
}

.profile-container .content .company-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.profile-container .company-section .logo {
    width: 110px;
    height: 110px;
    background-color: #1e3a5f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: 600;
    overflow: hidden;
}

.profile-container .company-section .logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.profile-container .company-section .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
}

.profile-container .info-grid .info-item {
    display: flex;
    flex-direction: column;
}

.profile-container .info-item .label {
    color: var(--color-dark-gray);
    font-size: 14px;
    margin-bottom: 4px;
}

.profile-container .info-item .value {
    color: var(--color-black);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.profile-container .info-item .value.cnm {
    color: var(--secondary-color);
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
}

.profile-container .content .address-section {
    margin-top: 32px;
}

.profile-container .address-section .address-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-container .address-grid .address-item {
    display: flex;
    flex-direction: column;
}

.profile-container .address-item .label {
    color: var(--color-dark-gray);
    font-size: 14px;
    margin-bottom: 4px;
}

.profile-container .address-item .value {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
}



.arrowwithtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.arrowwithtitle .awtleft {
    display: flex;
    align-items: center;
}

.arrowwithtitle .back-btn {
    display: inline-block;
    font-size: 40px;
    color: var(--color-black);
}

.arrowwithtitle .section-title {
    text-align: left;
    margin-left: 20px;
    margin-bottom: 0;
}

/* Profile Edit */
.profile-edit {
    width: 100%;
    display: inline-block;
}

.profile-edit .photo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.profile-edit .photo-section .profile_logo {
    width: 100px;
    height: 100px;
    background-color: #1e3a5f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.profile-edit .photo-section .profile_logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.profile-edit .photo-section .photo-actions {
    display: flex;
    gap: 12px;
}

.profile-edit .photo-actions button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.profile-edit .photo-actions .upload-btn {
    background-color: #1e3a5f;
    color: white;
}

.profile-edit .photo-actions .remove-btn {
    background-color: #e5e7eb;
    color: #6b7280;
}

.profile-edit .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.profile-edit .form-grid .form-group {
    display: flex;
    flex-direction: column;
}

.profile-edit .address-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0 24px;
}

.profile-edit .address-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 32px;
    gap: 0 24px;
}




.border-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    margin: 10px 0 20px;
    text-align: left;
    position: relative;
}

.border-title span {
    position: relative;
    background-color: #fff;
    padding-right: 10px;
}

.border-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-light-gray);
    border-radius: 2px;
    z-index: -1;
}



/* Dashboard */

.dashboard {
    width: 100%;
    display: inline-block;
}

.dashboard .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.dashboard .stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.dashboard .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dashboard .stat-card.orange {
    background: #FFF8F3;
    border-color: #FADDC8;
}

.dashboard .stat-card.green {
    background: #F7FFF3;
    border-color: #CCF6B5;
}

.dashboard .stat-card.blue {
    background: #F0FBFF;
    border-color: #C8EBFA;
}

.dashboard .stat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dashboard .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
}

.dashboard .stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard .stat-card.orange .stat-icon {
    background: #FADDC8;
    color: #713911;
}

.dashboard .stat-card.green .stat-icon {
    background: #CCF6B5;
    color: #46710D;
}

.dashboard .stat-card.blue .stat-icon {
    background: #C8EBFA;
    color: #125977;
}

.dashboard .stat-label {
    color: var(--color-dark-gray);
    font-size: 16px;
    font-weight: 500;
}

.dashboard .stat-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}



/* Products */
.productmain {
    width: 100%;
    display: inline-block;
}

.productmain .header-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.productmain .purchase-btn {
    background-color: #999;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.productmain .purchase-btn:hover {
    background-color: #777;
}

.productmain .custom-table-main {
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
}

.productmain .table-responsive {
    border-radius: 8px;
}

.productmain .custom-table thead th {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.productmain .custom-table thead th {
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    text-align: center;
}

.productmain .custom-table tbody td {
    color: var(--color-dark-gray);
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-light-gray);
    text-align: center;
}

.productmain .custom-table tbody tr:last-child td {
    border-bottom: none;
}

.productmain .product-image {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.productmain .qr-code {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 40px;
    color: var(--color-dark-gray);
}

.productmain .qr-code:hover {
    color: var(--primary-color);
}

.productmain .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productmain .edit-link {
    color: var(--primary-color);
    text-decoration: underline !important;
    font-weight: 500;
}

.productmain .edit-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.productmain .view-product {
    color: var(--secondary-color) !important;
}

.productmain .view-product:hover {
    color: var(--primary-color) !important;
}


/* .qrModal  */
.qrModal .modal-dialog {
    max-width: 420px;
    width: 92%;
    margin: 28px auto;
}

.qrModal .modal-content {
    border: none;
    border-radius: 16px;
    padding: 16px;
}

.qrModal .modal-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 24px;
    line-height: 24px;
}

.qrModal .modal-body .small {
    color: var(--color-dark-gray);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.qrModal .modal-body .qrimgmain {
    width: 220px;
    height: 220px;
    overflow: hidden;
    margin: 0 auto;
}

.qrModal .modal-body .qrimgmain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrModal .btn-download {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.qrModal .btn-download:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.qrModal .btn-copy {
    background-color: var(--color-white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 20px;
}

.qrModal .btn-copy:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--color-white);
}

.qrModal i {
    vertical-align: middle;
    line-height: 1;
}

/* No Data */
.product-no-data {
    position: relative;
    min-height: calc(100vh - 199px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-no-data .content-container {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 90%;
    text-align: center;
}

.product-no-data .imgmain {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: 0 auto;
}

.product-no-data .imgmain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-no-data .title {
    color: var(--primary-color);
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-no-data .description {
    color: var(--color-dark-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}





/* Products Add */
.product_add {
    width: 100%;
    display: inline-block;
}

/* .product_add .product_data {
    width: 100%;
    display: inline-block;
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
    padding: 30px;
} */

.seed-product-main {
    width: 100%;
    display: inline-block;
}

.seed-search input {
    background-color: rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    max-width: 855px;
}

.seed-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.seed-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    background-color: var(--color-white);
    border: 1px solid var(--color-light-gray);
}

.seed-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.seed-item__image-wrapper {
    position: relative;
    width: 100%;
    padding: 15px;
}

.seed-item__image-wrapper .imgbox {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.seed-item__image-wrapper .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seed-item__overlay {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.seed-item__title {
    color: var(--color-dark-gray);
    font-weight: 700;
    font-size: 16px;
}

.seed-item.selected {
    background: var(--primary-color);
}

.seed-item.selected .seed-item__title {
    color: var(--color-white);
}

.seed-item.selected .seed-item__image-wrapper .imgbox {
    border-color: var(--color-white);
}


.steppermain {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.steppermain .step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
}

.steppermain .step-circle {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: #C4C4C4;
    color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.steppermain .step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark-gray);
    transition: color 0.3s ease;
    margin-bottom: 5px;
}

.steppermain .step-label {
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--color-dark-gray);
    margin-bottom: 10px;
}

.steppermain .step-desc {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.4;
}

.steppermain .step-separator {
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    transition: color 0.3s ease;
}

.steppermain .step-separator span:nth-child(1) {
    opacity: 0.4;
}

.steppermain .step-separator span:nth-child(2) {
    opacity: 0.7;
}

.steppermain .step-separator span:nth-child(3) {
    opacity: 1;
}

.steppermain>.step-separator:last-child {
    display: none;
}

.steppermain .step-item.step-active .step-circle {
    background-color: #1F4068;
    color: white;
}

.steppermain .step-item.step-active .step-title {
    color: #1F4068;
}

.steppermain .step-item.step-active .step-circle::after {
    content: none;
}

.steppermain .step-item.step-completed .step-circle {
    background-color: #6A8D3B;
    color: transparent;
}

.steppermain .step-item.step-completed .step-circle::after {
    content: "\eb7b";
    font-family: remixicon !important;
    color: white;
    position: absolute;
    font-size: 26px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.steppermain .step-item.step-completed .step-title {
    color: #6A8D3B;
}

.steppermain .step-item.step-completed+.step-separator {
    color: #6A8D3B;
}

.steppermain .stepper-content-box {
    width: 100%;
    display: inline-block;
}

.steppermain .step-content-panel {
    display: none;
}

.steppermain .step-content-panel h3 {
    color: #1F4068;
    margin-top: 0;
}


.product_add .form-section h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 24px;
}

.product_add .crop-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #B7B7B71A;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.product_add .crop-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product_add .crop-image {
    width: 125px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.product_add .crop-details p:first-child {
    font-size: 14px;
    line-height: 14px;
    color: var(--color-dark-gray);
    font-weight: 500;
    margin-bottom: 4px;
}

.product_add .crop-details p:last-child {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 0;
}

.product_add .change-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline !important;
}

.product_add .upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.product_add .upload-area:hover {
    border-color: #6b8e4e;
    background: #f8f9fa;
}

.product_add .upload-icon {
    display: inline-block;
    font-size: 48px;
    color: var(--color-dark-gray);
    margin-bottom: 10px;
    line-height: 48px;
}

.product_add .upload-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_add .upload-area p:first-of-type {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.product_add .upload-area p:last-of-type {
    font-size: 14px;
    color: var(--color-dark-gray);
    font-weight: 500;
    margin-bottom: 0;
}

.product_add .preview-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product_add .preview-item {
    flex-shrink: 0;
    position: relative;
}

.product_add .preview-item .preview-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.product_add .preview-item .preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_add .delete-btn {
    font-size: 14px;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    box-shadow: none;
    padding: 0;
}

.product_add .delete-btn:hover {
    background: #d32f2f;
}


.product_add .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.product_add .section-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 0;
}

.product_add .detail-card {
    background: #B7B7B71A;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.product_add .detail-card:last-child {
    margin-bottom: 0;
}

.product_add .card-title {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
}

.product_add .card-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-light-gray);
    border-radius: 2px;
    z-index: 1;
}

.product_add .cdtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    background-color: #f8f8f8;
    padding-right: 20px;
}

.product_add .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    clip-path: polygon(25% 5%, 75% 5%,
            100% 50%, 75% 95%,
            25% 95%, 0% 50%);
    border: 10px solid #ffffff;
}

.product_add .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_add .icon-wrapper.green {
    background: #DDFAC8;
    color: #678A38;
    border-color: #DDFAC8;
}

.product_add .icon-wrapper.orange {
    background: #FADDC8;
    color: #81502D;
    border-color: #FADDC8;
}

.product_add .icon-wrapper.purple {
    background: #C8D6FA;
    color: #1C409A;
    border-color: #C8D6FA;
}

.product_add .icon-wrapper.yellow {
    background: #FFF4A4;
    color: #584F0B;
    border-color: #FFF4A4;
}

.product_add .icon-wrapper.pink {
    background: #FAC8F5;
    color: #99328F;
    border-color: #FAC8F5;
}

.product_add .card-title h3 {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 600;
}

.product_add .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.product_add .form-row:last-child {
    margin-bottom: 0;
}

.product_add .form-row .form-group.full-width {
    grid-column: 1 / -1;
}

.product_add .detail-card .form-label {
    color: var(--color-dark-gray);
    font-weight: 500;
}

.product_add .detail-card .form-control {
    border-color: var(--color-light-gray);
}




/* Plans Page */
.plans-page .plans-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.plans-page .plan-card {
    flex: 1;
    min-width: 300px;
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.plans-page .plan-card.standard {
    border-color: var(--primary-color);
}

.plans-page .plan-card.premium {
    border-color: var(--secondary-color);
}

.plans-page .plan-card .plantype span {
    width: auto;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 7px;
}

.plans-page .plan-card.standard .plantype span {
    color: var(--primary-color);
    background-color: rgba(103, 138, 56, 0.1);
}

.plans-page .plan-card.premium .plantype span {
    color: var(--secondary-color);
    background-color: rgba(53, 80, 126, 0.1);
}

.plans-page .plan-card .price {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 5px;
}

.plans-page .plan-card.standard .price {
    color: var(--primary-color);
}

.plans-page .plan-card.premium .price {
    color: var(--secondary-color);
}

.plans-page .plan-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-gray);
}

.plans-page .plan-card .description {
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 500;
    margin-bottom: 0;
}

.plans-page .plan-card .additional-info {
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 500;
    margin-bottom: 20px;
}

.plans-page .plan-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.plans-page .plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plans-page .plan-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark-gray);
    display: flex;
    align-items: center;
}

.plans-page .plan-card ul li i {
    margin-right: 10px;
    font-size: 18px;
}

.plans-page .plan-card.standard ul li i {
    color: var(--primary-color);
}

.plans-page .plan-card.premium ul li i {
    color: var(--secondary-color);
}

.plans-page .box-title {
    font-size: 25px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: 800;
}

/* .plans-page .payment-details {
    margin-bottom: 40px;
} */


.plans-page .payment-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-light-gray);
    padding: 24px;
    margin-bottom: 30px;
}

.plans-page .header-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black);
}

.plans-page .item-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 16px;
    padding: 20px 0 0;
    align-items: center;
}

.plans-page .plan-name {
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.plans-page .price {
    color: var(--color-dark-gray);
}

.plans-page .price-value {
    font-size: 16px;
    font-weight: 600;
}

.plans-page .per-qr {
    font-size: 12px;
    color: var(--color-dark-gray);
    font-weight: 400;
}

.plans-page .qr-quantity {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--color-light-gray);
    border-radius: 6px;
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 600;
}

.plans-page .qty-btn {
    width: auto;
    height: 32px;
    border: none;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--color-dark-gray);
}

.plans-page .qty-btn:hover {
    background: #f5f5f5;
}

.plans-page .qty-display {
    min-width: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.plans-page .amount {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.plans-page .total-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 16px;
    padding-top: 20px;
    margin-top: 20px;
    align-items: center;
    border-top: 1px solid var(--color-light-gray);
}

.plans-page .total-label {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.plans-page .total-amount {
    text-align: right;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}



.plans-page .instructions ol {
    counter-reset: counter;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.plans-page .instructions ol li {
    color: var(--color-dark-gray);
    counter-increment: counter;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.plans-page .instructions ol li::before {
    content: counter(counter);
    position: absolute;
    left: 0;
    top: 0;
}

.plans-page .instructions ol li:last-child {
    margin-bottom: 0;
}





/* Home Page */
.qrtag-sec .plans-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.qrtag-sec .plan-card {
    flex: 1;
    min-width: 300px;
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.qrtag-sec .plan-card.standard {
    border-color: var(--primary-color);
}

.qrtag-sec .plan-card.premium {
    border-color: var(--secondary-color);
}

.qrtag-sec .plan-card .plantype span {
    width: auto;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 7px;
}

.qrtag-sec .plan-card.standard .plantype span {
    color: var(--primary-color);
    background-color: rgba(103, 138, 56, 0.1);
}

.qrtag-sec .plan-card.premium .plantype span {
    color: var(--secondary-color);
    background-color: rgba(53, 80, 126, 0.1);
}

.qrtag-sec .plan-card .price {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 5px;
}

.qrtag-sec .plan-card.standard .price {
    color: var(--primary-color);
}

.qrtag-sec .plan-card.premium .price {
    color: var(--secondary-color);
}

.qrtag-sec .plan-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-gray);
}

.qrtag-sec .plan-card .description {
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 500;
    margin-bottom: 0;
}

.qrtag-sec .plan-card .additional-info {
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 500;
    margin-bottom: 20px;
}

.qrtag-sec .plan-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.qrtag-sec .plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.qrtag-sec .plan-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark-gray);
    display: flex;
    align-items: center;
}

.qrtag-sec .plan-card ul li i {
    margin-right: 10px;
    font-size: 18px;
}

.qrtag-sec .plan-card.standard ul li i {
    color: var(--primary-color);
}

.qrtag-sec .plan-card.premium ul li i {
    color: var(--secondary-color);
}

.suctogglebar {
    color: white;
    text-align: center;
    background: green;
    height: 42px;
    line-height: 2.6;
    font-size: 16px;
}

.failtogglebar {
    color: white;
    text-align: center;
    background: red;
    height: 42px;
    line-height: 2.6;
    font-size: 16px;
}



/* // Responsive Style Start */
@media (max-width: 1680.98px) {}

@media (max-width: 1440.98px) {
    body {
        font-size: 14px;
        line-height: 24px;
    }

    .form-control {
        height: 40px;
        font-size: 14px;
    }

    .form-label {
        font-size: 14px;
        line-height: 14px;
    }

    .btn {
        font-size: 14px;
        line-height: 14px;
        padding: 10px 25px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    ul li {
        font-size: 14px;
        line-height: 24px;
    }

    .headermain .nav-link {
        font-size: 14px;
        line-height: 14px;
    }

    .card li {
        font-size: 14px;
        line-height: 24px;
    }

    ul.checkmarkul li {
        font-size: 14px;
        line-height: 24px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .arrowwithtitle .back-btn {
        font-size: 35px;
    }

    .hero-section {
        min-height: 100%;
    }

    .hero-section .hero h1 {
        font-size: 35px;
    }

    .hero-section .hero {
        margin-bottom: 30px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    }

    .loginmain .forgot-password a,
    .loginmain .signup-link {
        font-size: 14px;
    }

    .loginmain h1 {
        font-size: 30px;
    }

    .loginmain .subtitle {
        font-size: 16px;
    }

    .product-no-data .title {
        font-size: 30px;
    }

    .product-no-data .description {
        font-size: 16px;
    }


    .seed-grid {
        grid-template-columns: repeat(4, 1fr);
    }


    .qrtag-sec .plan-card .plantype span,
    .plans-page .plan-card .plantype span {
        font-size: 14px;
        line-height: 14px;
    }

    .qrtag-sec .plan-card .price,
    .plans-page .plan-card .price {
        font-size: 25px;
    }

    .qrtag-sec .plan-card .description,
    .plans-page .plan-card .description {
        font-size: 14px;
    }

    .qrtag-sec .plan-card .additional-info,
    .plans-page .plan-card .additional-info {
        font-size: 14px;
    }

    .qrtag-sec .plan-card h4,
    .plans-page .plan-card h4 {
        font-size: 16px;
    }

    .qrtag-sec .plan-card ul li,
    .plans-page .plan-card ul li {
        font-size: 14px;
    }

    .plans-page .header-row {
        font-size: 14px;
    }

    .plans-page .plan-name {
        font-size: 14px;
    }

    .plans-page .price-value {
        font-size: 14px;
    }

    .plans-page .amount {
        font-size: 14px;
    }

    .plans-page .qty-display {
        font-size: 14px;
    }

    .plans-page .total-label {
        font-size: 18px;
    }

    .plans-page .total-amount {
        font-size: 18px;
    }

    .plans-page .instructions ol li {
        font-size: 14px;
    }

    .plans-page .box-title {
        font-size: 20px;
    }
}

@media (max-width: 1399.98px) {
    .hero-section .feature-card h3 {
        font-size: 18px;
    }

    .card h3 {
        font-size: 18px;
    }

    .how-it-works .step h3,
    .deliverables .step h3 {
        font-size: 18px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .stakeholder h3 {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1280.98px) {
    .hero-section .heromain {
        flex: 0 0 auto;
        width: 90%;
    }
}

@media (max-width: 1199.98px) {
    .headermain .navbar-brand {
        width: 170px;
    }

    .headermain .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .headermain .nav-link {
        font-size: 12px;
        line-height: 12px;
        padding: 10px 12px !important;
    }

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

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page_main {
        padding-top: 70px;
    }
}

@media (max-width: 1024.98px) {
    .hero-section .heromain {
        flex: 0 0 auto;
        width: 100%;
    }

    .seed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .headermain .nav-link {
        font-size: 14px;
        line-height: 14px;
        padding: 10px 12px !important;
    }


    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }


    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background-color: var(--primary-color);
        border-radius: 20px;
    }

    .fixed-header .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }

    .navbar-toggler {
        border: 0;
        box-shadow: none !important;
        padding: 0;
    }

    .navbar-toggler span {
        width: 25px;
        height: 3px;
        background: #00214d;
        display: block;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        margin-bottom: 4px;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .navbar-toggler span:last-child {
        margin-bottom: 0;
    }

    .navbar-toggler span:nth-child(1) {
        width: 16px;
    }

    .navbar-toggler:hover span:nth-child(1) {
        width: 25px;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        width: 25px;
        -webkit-transform: rotate(45deg) translate(5px, 5px);
        -ms-transform: rotate(45deg) translate(5px, 5px);
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(5px, -5px);
        -ms-transform: rotate(-45deg) translate(5px, -5px);
        transform: rotate(-45deg) translate(5px, -5px);
    }


    section {
        padding: 30px 0;
    }

    .contentimg {
        flex: 0 0 100%;
        max-width: 100%;
        width: 50%;
        order: 1;
    }

    .contentbox {
        flex: 0 0 100%;
        max-width: 100%;
        width: 50%;
        order: 2;
    }

    .content-wrapper {
        gap: 25px;
    }

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

    /* .section-title h2 {
        font-size: 30px;
    }

    .why-us .subtitle {
        font-size: 16px;
    } */

    .hero-image {
        height: 320px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }


    .solution-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .solution-pillars {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 35px;
    }

    .headermain .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0px;
        width: 100%;
        background: #FFFFFF;
        padding: 0px 10px 10px;
    }

    .headermain .navbar-toggler {
        order: 2;
    }

    .headermain .header-btn {
        order: 1;
        margin-right: 10px;
    }

    .headermain .navbar {
        padding: 10px 0px;
    }

    .page_main {
        padding-top: 60px;
    }

    .loginmain .logininner {
        flex: 0 0 auto;
        width: 70%;
    }

    .seed-grid {
        gap: 15px;
    }
}

/* Small Devices (Landscape Phones, 768px and up) */
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-section .hero h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .arrowwithtitle .back-btn {
        font-size: 34px;
    }

    .section-title p {
        font-size: 16px;
    }

    .card {
        padding: 30px 20px;
    }

    .card li {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-image {
        height: 280px;
    }

    .loginmain .logininner {
        flex-direction: column;
    }

    .loginmain .left-section {
        min-height: 250px;
        margin-bottom: 25px;
    }

    .loginmain h1 {
        font-size: 32px;
    }

    br {
        display: none;
    }


    .solution-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps,
    .features-grid,
    .stakeholders {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loginmain h1 {
        font-size: 28px;
    }

    .loginmain .subtitle {
        font-size: 14px;
    }

    .profile-container .info-item .value.cnm {
        font-size: 25px;
        line-height: 32px;
    }

    .border-title {
        font-size: 20px;
    }


    .profile-container .content .company-section {
        grid-template-columns: 1fr;
    }

    .profile-container .company-section .info-grid {
        grid-template-columns: 1fr;
    }

    .profile-container .address-section .address-grid {
        grid-template-columns: 1fr 1fr;
    }


    .profile-edit .form-grid,
    .profile-edit .address-grid {
        grid-template-columns: 1fr;
    }

    .profile-edit .address-row {
        grid-template-columns: 1fr;
    }

    .profile-edit .photo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-edit .photo-section .photo-actions {
        width: 100%;
    }

    .profile-edit .photo-actions button {
        flex: 1;
    }


    .dashboard .header {
        flex-direction: column;
    }

    .dashboard .create-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard .stat-value {
        font-size: 36px;
    }


    .productmain .custom-table {
        font-size: 14px;
    }

    .productmain .custom-table thead th,
    .productmain .custom-table tbody td {
        padding: 12px 8px;
    }

    .productmain .product-image {
        width: 50px;
        height: 40px;
    }

    .productmain .qr-code {
        width: 35px;
        height: 35px;
    }

    .productmain .purchase-btn {
        padding: 10px 18px;
        font-size: 14px;
    }


    .steppermain .step-item {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .steppermain .step-item:last-child {
        margin-bottom: 0;
    }

    .steppermain .step-separator {
        display: none;
    }

    .steppermain .stepper-content-box {
        margin: 0 20px;
        max-width: none;
    }

    .product_add .steps-container {
        flex-direction: column;
    }

    .product_add .arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .product_add .step {
        min-width: 100%;
    }

    .product_add .preview-container {
        margin-top: 30px;
    }

    .seed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .border-content {
        padding: 20px;
    }

    .arrowwithtitle {
        width: 100%;
        display: inline-block;
    }

    .arrowwithtitle .awtright {
        margin-top: 15px;
        text-align: right;
    }

    .plans-page .payment-table .total-row td {
        font-size: 18px;
    }

    .plans-page .plans-section {
        flex-direction: column;
        align-items: center;
    }

    .qrtag-sec .plan-card,
    .plans-page .plan-card {
        width: 100%;
        max-width: 400px;
    }

    .plans-page .header-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .plans-page .header-row div:nth-child(2),
    .plans-page .header-row div:nth-child(3) {
        display: none;
    }

    .plans-page .item-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 0;
    }

    .plans-page .item-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .plans-page .plan-name {
        grid-column: 1 / -1;
        font-size: 18px;
        margin-bottom: 4px;
    }

    /* .plans-page .price,
    .plans-page .quantity-control,
    .plans-page .amount {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    } */

    .plans-page .amount {
        align-items: flex-end;
    }

    .plans-page .mobile-label {
        display: block;
        font-size: 14px;
        color: var(--color-dark-gray);
        font-weight: 600;
        margin-bottom: 4px;
    }

    .plans-page .total-row {
        grid-template-columns: 1fr 1fr;
        padding-top: 24px;
        margin-top: 16px;
        border-top: 2px solid #f0f0f0;
    }

    .plans-page .total-row div:nth-child(2),
    .plans-page .total-row div:nth-child(3) {
        display: none;
    }
}

@media (min-width: 769px) {
    .plans-page .mobile-label {
        display: none;
    }

    .plans-page .item-content {
        display: contents;
    }
}

/* Extra Small Devices (Portrait Phones, 576px and up) */
@media (max-width: 575px) {
    .section-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .arrowwithtitle .back-btn {
        font-size: 30px;
    }

    .hero-section {
        min-height: auto;
        padding: 30px 0px;
    }

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

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }


    .card h3 {
        font-size: 16px;
    }

    .card li {
        font-size: 14px;
        line-height: 22px;
        padding-left: 25px;
    }

    .hero-image {
        height: 240px;
    }

    .how-it-works .step,
    .deliverables .step,
    .feature,
    .stakeholder,
    .why-card {
        padding: 25px 20px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .solution-pillar {
        padding: 25px 15px;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-info h4,
    .contact-form h4 {
        font-size: 24px;
    }

    .solution-pillars {
        grid-template-columns: repeat(1, 1fr);
    }

    .how-it-works .step,
    .deliverables .step,
    .features-grid,
    .stakeholders {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }


    .logindropdown .dropdown-menu[data-bs-popper] {
        right: 0;
        left: auto;
    }

    .loginmain h1 {
        font-size: 25px;
    }


    .productmain .custom-table {
        font-size: 12px;
    }

    .productmain .custom-table thead th,
    .productmain .custom-table tbody td {
        padding: 10px 6px;
    }

    .productmain .product-image {
        width: 40px;
        height: 30px;
    }

    .productmain .qr-code {
        width: 30px;
        height: 30px;
    }

    .product-no-data .title {
        font-size: 25px;
    }

    .product-no-data .description {
        font-size: 14px;
        padding: 0 10px;
    }

    .product-no-data .imgmain {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .product-no-data {
        min-height: 100%;
    }

    .seed-grid {
        gap: 15px;
    }

    .seed-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .product_add .crop-selector {
        width: 100%;
        display: inline-block;
    }

    .product_add .change-btn {
        text-align: right;
        margin-top: 10px;
        width: 100%;
        display: inline-block;
    }

    .product_add .crop-info {
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    .product_add .crop-details {
        margin-top: 15px;
    }

    .steppermain .step-title {
        font-size: 16px;
    }

    .seed-item__title {
        font-size: 14px;
    }

    .product_add .card-title h3 {
        font-size: 16px;
    }

    .product_add .upload-area p:first-of-type {
        font-size: 16px;
    }
}

@media (max-width: 480.98px) {
    .offcanvas {
        margin: 0;
    }

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

    .section-title h2 {
        font-size: 24px;
    }

    .arrowwithtitle .back-btn {
        font-size: 29px;
    }

    .hero-image {
        height: 200px;
    }

    .card {
        padding: 20px 15px;
    }

    .how-it-works .step,
    .deliverables .step,
    .feature,
    .stakeholder,
    .why-card {
        padding: 20px 15px;
    }

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


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

    .hero-section .hero h2 {
        font-size: 18px;
    }

    .hero-section .badge {
        font-size: 14px;
        padding: 6px 15px;
    }

    .hero-section .badge i {
        font-size: 16px;
    }

    .loginmain .right-section {
        padding: 30px 20px;
    }

    .loginmain h1 {
        font-size: 25px;
    }

    .loginmain .subtitle {
        font-size: 14px;
    }

    .headermain .profile-avatar {
        width: 30px;
        height: 30px;
    }

    .headermain .profile-avatar i {
        font-size: 16px;
    }

    .headermain .profile-name {
        font-size: 14px;
    }

    .headermain .navbar-brand {
        width: 150px;
        margin-right: 5px;
    }

    .page_main {
        padding-top: 57px;
    }

    .profile-container .info-item .value.cnm {
        font-size: 22px;
        line-height: 30px;
    }

    .border-title {
        font-size: 20px;
    }



    .profile-container .headbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .profile-container .headbox .edit-btn {
        width: 100%;
        justify-content: center;
    }

    .profile-container .address-section .address-grid {
        grid-template-columns: 1fr;
    }



    .dashboard .header {
        margin-bottom: 20px;
        gap: 16px;
    }

    .dashboard .header-content h1 {
        font-size: 20px;
    }

    .dashboard .stats-grid {
        gap: 16px;
    }

    .dashboard .stat-card {
        padding: 15px;
    }

    .dashboard .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .dashboard .stat-label {
        font-size: 14px;
    }

    .dashboard .stat-value {
        font-size: 32px;
    }


    .product_add .form-row {
        grid-template-columns: 1fr;
    }

    .product_add .detail-card {
        padding: 16px;
    }


    .plans-page .payment-card {
        padding: 16px;
    }

    .plans-page .item-content {
        grid-template-columns: 1fr;
    }

    .plans-page .amount {
        align-items: flex-start;
    }
}

/* Ultra Small Devices (Below 400px) */
@media (max-width: 399px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-image {
        height: 200px;
    }

    .card {
        padding: 20px 15px;
    }

    .how-it-works .step,
    .deliverables .step,
    .feature,
    .stakeholder,
    .why-card {
        padding: 20px 15px;
    }

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

/* // Responsive Style End */