* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #fff;
    background-color: #fefefe;
}

body::-webkit-scrollbar {
    width: 0;
}

/* globle styling */
img {
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

hr {
    width: 95vw;
    margin: 0 auto;
}

p {
    line-height: 30px;
}

button {
    cursor: pointer;
    border-radius: 5px;
}

input,
select {
    border-radius: 5px;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    background-color: #fff;
    box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.25);
}

.logo {
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #11101b;
}

.hamburger {
    display: none;
}

.nav-bar ul,
.social-icons ul {
    display: flex;
}

.nav-bar ul li:last-child {
    margin-right: 0;
}

.nav-bar ul li a,
.social-icons ul li a {
    display: block;
    color: #11101b;
    font-size: 18px;
    padding: 10px;
    border-radius: 50px;
    transition: all ease 0.2s;
    margin: 0 5px;
    font-size: 16px;
}

.nav-bar ul li a:hover,
.social-icons ul li a:hover {
    color: #11101b;
}

.nav-bar ul li a.active,
.social-icons ul li a.active {
    color: goldenrod;
}

.nav-bar ul .submenu {
    position: absolute;
    width: 200px;
    background: #ffff;
    border-radius: 5px;
    box-shadow: 0 20px 4px #00000020;
    margin-top: -50px;
    opacity: 0;
    z-index: -999;
    transition: all ease 0.5s;
}

.nav-bar ul li:hover .submenu {
    z-index: 99;
    opacity: 1;
    margin-top: 0;
}

.nav-bar ul .submenu li {
    margin: 0;
    width: 100%;
}

.nav-bar ul .submenu li a {
    padding: 10px 20px;
    width: 100%;
    font-size: 15px;
}

.nav-bar ul .submenu li p {  
  padding: 15px 20px 5px 20px;
  width: 100%;
  font-weight: 600;
  text-transform: capitalize;
}

.notifications-total {
    position: absolute;
    top: 15px;
    margin-left: 10px;
    font-size: 10px;
    background-color: rgb(235, 210, 72);
    color: #fff;
    padding: .2rem;
    width: 20px;
    height: auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
}

main {
    padding: 80px 0px 0px 0px;
    color: #555454;
}

/* Hero Section */
.banner {
    background: linear-gradient(to right, #000, #333);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.2rem;
    color: goldenrod;
    margin-bottom: 2rem;
}

.banner button {
    background-color: goldenrod;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.banner button:hover {
    background-color: rgb(235, 210, 72);
}

/* Quick Benefits Row */
.benefits-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
    padding: 0 1rem;
}

.benefit {
    flex: 1 1 200px;
}

.benefit-icon {
    font-size: 2rem;
    color: goldenrod;
    margin-bottom: 0.5rem;
}

.benefit p {
    margin: 0;
    font-weight: bold;
    color: #000;
}

/* Subscription Cards Section */
.subscriptions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.subscription-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.subscription-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.subscription-card p {
    color: #555;
    margin-bottom: 1rem;
}

.subscription-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.subscription-card li {
    margin-bottom: 0.5rem;
    color: #333;
}

.subscription-card button {
    background-color: goldenrod;
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.subscription-card button:hover {
    background-color: rgb(235, 210, 72);
}

/* CTA Banner */
.cta-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 2rem;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: goldenrod;
    margin-bottom: 1.5rem;
}

.cta-banner button {
    background-color: goldenrod;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.cta-banner button:hover {
    background-color: rgb(235, 210, 72);
}

/* footer */
footer {
    background: #252525;
    color: #f3f3f3;
    padding: 30px;
}

.footer-container {
    display: flex;
    flex-direction: row;
}

footer h2 {
    padding: 10px 0;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: bold;
}

.title-contact {
    color: #f3f3f3;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
}

.footer-left,
.footer-left-one, 
.footer-right,
.footer-right-one {
    width: 25%;
    margin: 0 20px;
}

footer p {
    color: #808080;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-left p {
    margin-bottom: 10px !important;
    font-size: 0.9rem;
}

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

.contact-details p {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-details p svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color:  #fff;
}

footer .copyright {
    margin-bottom: 0;
}

footer > p {
    text-align: center;
    opacity: 0.8;
    margin-top: 20px;
}

footer ul li, footer ul li a {
    margin-bottom: 15px;
    color: #808080;
    list-style: none;
    font-weight: 300;
}

footer ul li a:hover {
    text-decoration: underline;
}

.social-icon,
.payment-methods {
    margin-bottom: 20px;
}

.footer-left .social-icon {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
}

.social-icon span a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-left svg {
    width: 15px;
    height: 15px;
}

.footer-left span {
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-left span a {
    color: #eee;
}

.footer-left-one ul li {
    text-transform: uppercase;
    font-size: 14px;
}

.footer-right i {
    font-size: 1rem;
    color: #808080;
}

.footer-right input {
    font-size: 18px;
    border: none;
    background: transparent;
    outline: none;
    color: #808080;
    padding-right: 10px;
    width: 100%;
}

.footer-right div{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 200px;
    padding: 10px 0;
    border-bottom: 1.6px solid #808080;
    margin-bottom: 20px;
}

.footer-right-one ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.footer-right-one ul li {
    list-style: none;
    font-weight: 300;
}

.footer-right-one ul img {
    border-radius: 3px;
    width: 100px;
    height: 100px;
}

.errortext,
.error {
    background-color: rgb(249, 192, 192);
    border: 1px solid red;
    padding: 5px;
    text-transform: capitalize;
    color: red;
    font-size: 13px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 10px;
    display: none;
}

.successtext,
.success {
    background-color: rgb(132, 228, 103);
    border: 1px solid green;
    padding: 5px;
    text-transform: capitalize;
    color: green;
    font-size: 13px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 10px;
    display: none;
}

/* popups modules */
.member-services-popup,
.delivery-options-popup,
.parcel-popup,
.success-popup,
.contact-us-popup,
.search-popup,
.newsletter-popup {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
    transform: scale(1);
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.member-services-content,
.contact-us-content,
.search-content,
.newsletter-content {
    position: relative;
    height: 500px;
    width: 700px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.member-services-content::-webkit-scrollbar {
    width: 0px;
}

.member-close svg,
.delivery-close svg,
.contact-us-close svg,
.search-close svg,
.newsletter-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
}

.member-title,
.delivery-title,
.contact-us-title,
.search-title,
.newsletter-title {
    text-align: center;
    padding: 20px;
}

.member-title h2,
.delivery-title h2,
.contact-us-title h5,
.search-title h6,
.newsletter-title h5 {
    font-weight: bold;
    color: #47453e;
    font-size: 30px;
    margin-bottom: 10px;
}

.member-title h2 span,
.delivery-title h2 span {
    text-transform: capitalize;
    color: goldenrod;
}

.member-title hr,
.delivery-title hr,
.contact-us-title hr,
.search-title hr,
.newsletter-title hr {
    margin-block-end: 0px;
    margin-block-start: 0px;
    width: 70px;
    height: 5px;
    border: none;
    background-color: goldenrod;
    border-radius: 5px;
}

.member-middle {
    height: auto;
    overflow-x: hidden;
}

.member-middle p {
    color: #555454;
    font-size: 16px;
}

.member-service-list ul li {
    margin-bottom: 20px;
}

.member-service-list ul li a {
    font-weight: 600;
    font-size: 16px;
    color: #47453e;
}

.member-service-list ul li p {
    margin-top: 8px;
}

.member-service-delivery h2,
.member-service-list h2 {
    font-weight: bold;
    color: #47453e;
    font-size: 20px;
    margin-bottom: 20px;
}

.member-service-delivery div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.member-service-delivery div label {
    font-weight: bold;
    font-size: 16px;
    color: #47453e;
    margin-left: 7px;
    cursor: pointer;
}

.member-service-delivery p:not(:last-child) {
    margin-bottom: 20px;
}

.member-service-delivery p span,
.member-service-list ul li p span {
    color: goldenrod;
    cursor: pointer;
}

.member-service-delivery p a,
.member-service-list ul li p a {
    color: blue;
    font-weight: normal;
    cursor: pointer;
}

/* delivery option module */
.delivery-options-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

/* parcel module */
.parcel-popup-content {
    position: relative;
    height: auto;
    width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.member-title p {
    margin-top: 20px;
}

.parcel-popup-content span {
    color: red;
}

.parcel-form {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 100%;
    overflow-x: auto;
    height: 300px;
}

.parcel-form::-webkit-scrollbar,
.contact-us-content::-webkit-scrollbar {
    width: 0;
}

.parcel-form .form-col {
    width: 100%;
    margin-bottom: 20px;
}

.parcel-form .form-group {
    display: flex;
    flex-direction: column;
}

.parcel-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.parcel-form .form-row .form-group {
    width: 48%;
}

.parcel-form .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.parcel-form .form-group label span {
    color: red;
}

.parcel-form .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.parcel-form .form-col textarea {
    resize: none;
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 10px;
    outline: none;
}

.parcel-form .form-col select {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.parcel-form button {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    width: 100%;
    cursor: pointer;
}

/* success popup */
.success-popup-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

/* newsletter popup */
.newsletter-title {
    display: none;
}

.newsletter-form-content {
    margin-top: 20px;
}

.newsletter-form-left h5 {
    font-weight: bold;
    color: #47453e;
    font-size: 20px;
    margin-bottom: 10px;
}

.newsletter-form-left p {
    font-size: 15px;
}

.newsletter-form-left p span {
    font-weight: 600;
}

.newsletter-form-left ul li svg {
    width: 26px;
    height: 26px;
    padding: 5px;
    background: goldenrod;
    color: #fff;
    margin-right: 8px;
}

.newsletter-form-left ul li {
    font-size: 14px;
}

/* contact us popup */
.contact-us-form-content,
.newsletter-form-content {
    color: #555454;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-us-form-left,
.contact-us-form-right,
.newsletter-form-right,
.newsletter-form-left {
    width: 48%;
    margin-top: 20px;
}

.contact-us-form-left ul li,
.newsletter-form-left ul li {
    display: flex;
    flex-direction: row;
    margin: 15px 0 20px 0;
}

.contact-us-form-left ul li .office-svg,
.newsletter-form-left ul li .office-svg {
    width: 13%;
}

.contact-us-form-left ul li svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    background: goldenrod;
    color: #fff;
}

.contact-us-form-left ul li .office-details,
.newsletter-form-left ul li .office-details {
    width: 87%;
}

.contact-us-form-left ul li .office-details p,
.newsletter-form-left ul li .office-details p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-us-form-left ul li span,
.newsletter-form-left ul li span {
    font-weight: bold;
}

.contact-us-form,
.newsletter-form {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 100%;
    overflow-x: auto;
}

.contact-us-form::-webkit-scrollbar,
.newsletter-form::-webkit-scrollbar {
    width: 0;
}

.contact-us-form .form-col,
.newsletter-form .form-col {
    width: 100%;
    margin-bottom: 20px;
}

.contact-us-form .form-group,
.newsletter-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-us-form .form-row,
.newsletter-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-us-form .form-row .form-group,
.newsletter-form .form-row .form-group {
    width: 48%;
}

.contact-us-form .form-group label,
.newsletter-form .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.contact-us-form .form-group label span,
.newsletter-form .form-group label span {
    color: red;
}

.contact-us-form .form-group input,
.contact-us-form .form-group select,
.newsletter-form .form-group input,
.newsletter-form .form-group select {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.contact-us-form .form-col textarea,
.newsletter-form .form-col textarea {
    resize: none;
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 10px;
    outline: none;
}

.contact-us-form button,
.newsletter-form button {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    width: 100%;
    cursor: pointer;
}

/* search popup */
.search-content::-webkit-scrollbar {
    width: 0;
}

.search-form-box .form-col .form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-form-box .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.search-form-box .form-group label span {
    color: red;
}

.search-form-box .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    width: 60%;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.search-results {
    margin: 20px;
    color: #555454;
    height: 260px;
    overflow: auto;
}

.search-results::-webkit-scrollbar {
    width: 0;
}

.search-item {
    padding-bottom: 15px;
    border-bottom: 0.6px dotted #ccc;
}

.search-item:not(:last-child) {
    margin-bottom: 20px;
}

.search-item h6 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.search-item p {
    margin-bottom: 10px;
}

.search-item a {
    color: goldenrod;
    cursor: pointer;
}

.search-item a:hover {
    text-decoration: underline;
}

.search-pagenation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.search-pagenation ul {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-pagenation ul li {
    padding: 10px;
}

.search-pagenation ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

/* media query */
@media only screen and (max-width: 1320px){
    header {
        padding: 0 50px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-bar ul li {
        margin: 0;
    }
    
    .nav-bar ul li a{
        font-size: 15px;
        margin: 0;
    }
}

@media only screen and (max-width: 1100px){
    header {
        padding: 0 30px;
    }

    .logo {
        font-size: 10px;
    }

    .footer-right-one ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 912px){
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger svg {
        width: 40px;
        height: 40px;
        color: #11101b;
        margin: 6px 0;
    }

    .logo {
        font-size: 18px;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fefefe;
        transition: 0.2s;
        overflow: hidden;
    }

    .social-icons {
        height: 0;
        position: absolute;
        top: 520px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fefefe;
        transition: 0.2s;
        overflow: hidden;
    }

    .nav-bar.active,
    .social-icons.active {
        height: auto;
    }

    .nav-bar ul,
    .social-icons ul {
        display: block;
        width: fit-content;
        margin: 0 auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar ul li a,
    .social-icons ul li a {
        margin-bottom: 12px;
    }

    .nav-bar.active ul,
    .social-icons.active ul {
        opacity: 1;
    }

    .notifications-total {
        top: 60px;
    }

    .description-title,
    .services-products-title {
        text-align: center;
    }

    .description .description-title,
    .description-infor {
        width: 100%;
    }

    .company-team-title hr {
        margin-inline-start: auto;
    }

    .company-team .company-team-pic,
    .company-team .company-team-details {
        width: 100%;
        padding: 20px 0 0 0;
    }
    
    .description-title,
    .company-team-title {
        text-align: center;
    }

    .footer-container {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 800px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .description {
        height: 50vh;
    }
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 540px) {
    .nav-bar {
        overflow: hidden;
    }

    .description {
        height: auto;
        padding: 50px 20px 20px 20px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .footer-left, 
    .footer-left-one, 
    .footer-right, 
    .footer-right-one {
        width: 100%;
        margin: 0 20px;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .search-content {
        width: 400px;
    }

    .delivery-options-content {
        width: 500px;
    }

    .parcel-popup-content {
        width: 400px;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .newsletter-content,
    .search-content {
        width: 400px;
    }

    .delivery-options-content {
        width: 500px;
    }

    .parcel-popup-content {
        width: 400px;
    }

    .search-pagenation {
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .parcel-form .form-row .form-group,
    .contact-us-form .form-row .form-group,
    .newsletter-form .form-row .form-group,
    .search-form-box .form-group input {
        width: 100%;
    }

    .contact-us-form-left,
    .contact-us-form-right,
    .newsletter-form-left,
    .newsletter-form-right {
        width: 100%;
    }

    .contact-us-form-left,
    .newsletter-form-left {
        margin-top: 0;
    }

    .contact-us-form-left ul li .office-details,
    .newsletter-form-left ul li .office-details {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 460px) {
    .delivery-options-content {
        width: 400px;
    }

    .parcel-popup-content {
        width: 300px;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .search-content,
    .newsletter-content {
        width: 300px;
    }
}