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

body {
    font-family: Arial, sans-serif;
    background-color: rgb(35 35 35);
}

.main{.co
    margin: 0;
    z-index: 11;
}

.main nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    background-color: rgb(35 35 35);
}

nav .logo {
    gap: 30px;
    display: flex;
    align-items: center;
}

nav .logo img {
    width: 100px !important;
}

nav .logo a {
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

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

nav .auth-btn a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

nav .auth-btn a:nth-child(1) {
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #5BBB1E;
    transition: 0.5s all;
    color: #000;
}
nav .auth-btn a:nth-child(1):hover {
    background-color: #5BBB1E;
    border: 1px solid #5BBB1E;
    color: #fff;
}

nav .auth-btn a:nth-child(2) {
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 10px;
    background-color: #5BBB1E;
    border: 1px solid #5BBB1E;
    transition: 0.5s all;
    color: #fff;
}

nav .auth-btn a:nth-child(2):hover {
    background-color: #fff;
    border: 1px solid #5BBB1E;
    color: #000;
}

nav .auth-btn a:nth-child(3) {
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 10px;
    background-color: #5BBB1E;
    border: 1px solid #5BBB1E;
    transition: 0.5s all;
    color: #fff;
}

nav .auth-btn a:nth-child(3):hover {
    background-color: #fff;
    border: 1px solid #5BBB1E;
    color: #000;
}

.header {
    position: relative;
    margin-bottom: 100px;
}

.header .img {
    width: 100%;
    height: auto;
}

.header .img img {
    width: 100%;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 100px;
    color: white;
    width: 100%;
    padding: 0 30px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
}

/* Basic styles for the dot navigation */
.owl-theme .owl-dots {
    width: 100%;
    bottom: 0;
    position: absolute;
    text-align: center; /* Center dots */
    margin-top: 20px; /* Adjust spacing as needed */
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block; /* Display dots inline */
    margin: 5px; /* Space between dots */
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px; /* Width of the dot */
    height: 5px; /* Height of the dot */
    display: block;
    border-radius: 8px; /* Make dots circular */
    background: #001c31; /* Default dot color */
    transition: all 0.3s ease; /* Smooth transition */
    cursor: pointer;
}

/* Change the background color on hover */
.owl-theme .owl-dots .owl-dot:hover span {
    background: #5BBB1E; /* Color on hover */
}

/* Style for the active dot */
.owl-theme .owl-dots .owl-dot.active span {
    background: #5BBB1E; /* Active dot color */
    transform: scale(1.2); /* Slightly bigger active dot */
}

/* Custom hover effect with shadow */
.owl-theme .owl-dots .owl-dot:hover span {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Add a small shadow on hover */
}

/* To change the shape of the dot, remove border-radius for square dots or make oval */
.owl-theme .owl-dots .owl-dot.square span {
    border-radius: 0; /* Make dots square */
}

.owl-theme .owl-dots .owl-dot.oval span {
    border-radius: 50px; /* Make dots oval */
    width: 20px;
    height: 10px;
}

/* .header .img {
    width: 100%;
    height: 120vh;
    background-image: url("../images/Bg-1.png");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
} */

.header .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    transition: 0.5s;
}

.search-container {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
    position: relative;
    left: -30px;
}

.enter-button {
    padding: 10px 15px;
    position: absolute;
    right: -45px;
    background-color: #5BBB1E;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: 0.5s;
    text-transform: uppercase;
}

.enter-button:hover {
    background-color: #001c31;
}

.explore-button {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
}

.explore-button:hover {
    background-color: #5BBB1E;
    border: 1px solid #5BBB1E;
}

.header .content h1 {
    font-size: 60px;
    font-weight: 400;
    transition: 0.5s;
}

.header .content h1 span {
    color: #5BBB1E;
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
    z-index: 999;
    padding: 0;
}

.main-links {
    height: 100%;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: white;
}

.overlay {
    background-color: rgba(88, 88, 88, 0);
    height: 100vh;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.5s ease 0.2s, background-color 0.5s ease 0.2s, opacity 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    pointer-events: none;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links.active ~ .overlay {
    transform: translateX(0);
    background-color: rgba(88, 88, 88, 0.5);
    opacity: 1;
    pointer-events: auto;
}

.nav-links .main-links .links .nav-auth-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 40px 0px 0px 0px;
    margin-bottom: 10px;
    position: relative;
}

.nav-links .main-links .links .nav-auth-btn::before {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: rgba(88, 88, 88, 0.507);
    transition: 0.5s all;
}

.nav-links .main-links .links .nav-auth-btn a:nth-child(1) {
    font-size: 15px;
    padding: 6px 15px;
    border: 1px solid #5BBB1E;
    color: #000;
    border-radius: 10px;
    font-weight: 550;
    text-decoration: none;
    transition: 0.5s all;
}

.nav-links .main-links .links .nav-auth-btn a:nth-child(1):hover {
    border: 1px solid #5BBB1E;
    background-color: #5BBB1E;
    color: #fff;
    border-radius: 10px;
}

.nav-links .main-links .links .nav-auth-btn a:nth-child(2) {
    font-size: 15px;
    padding: 6px 15px;
    background-color: #fff;
    border-radius: 10px;
    background-color: #5BBB1E;
    border: 1px solid #5BBB1E;
    font-weight: 550;
    text-decoration: none;
    transition: 0.5s all;
    color: #fff;
}

.nav-links .main-links .links .nav-auth-btn a:nth-child(2):hover {
    background-color: #fff;
    border: 1px solid #5BBB1E;
    color: #000;
}

.nav-links .main-links .links .ancors {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.nav-links .main-links .links .ancors::before {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: rgba(88, 88, 88, 0.507);
    transition: 0.5s all;
}

.nav-links .main-links .links .ancors a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600px;
    padding: 0 0px 0 20px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links .main-links .links .ancors a.active {
    color: #5BBB1E;
}

.nav-links .main-links .links .ancors a:hover {
    color: #5BBB1E;
}

.nav-links .main-links .links .nav-logo {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.nav-links .main-links .links .nav-logo::before {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: rgba(88, 88, 88, 0.507);
    transition: 0.5s all;
}

.nav-links .main-links .links .nav-logo img {
    width: 100%;
}

.nav-links .main-links .links .toggle-btn {
    text-align: end;
    position: absolute;
    right: 6px;
    top: 2px;
    background: #5BBB1E;
    color: white;
    padding: 5px 10px;
    border-radius: 100px;
    cursor: pointer;
    z-index: 1;
}

.nav-links .main-links .links .toggle-btn:hover {
    background-color: #fff;
    border: 1px solid #5BBB1E;
    color: #000;
}

.user-profile {
    display: block;
    text-align: center;
    font-size: 16px;
}
.user-profile ul li {
    list-style: none;
    margin: 0 auto;
    border-left: 2px solid #5BBB1E;
    /* display: inline-block; */
    padding: 0 30px;
    position: relative;
    text-decoration: none;
    text-align: center;
    font-family: arvo;
}
.user-profile ul li span {
    color: #fff !important;
    transition: .5s;
    font-weight: 600;
}
.user-profile ul li span:hover {
    color: #5BBB1E;
}
.user-profile ul li:hover {
    cursor: pointer;
}
.user-profile ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 0;
    left: 0;
    display: none;
    background: white;
}

.user-profile ul li:hover > ul,
ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    min-width: 250px;
    text-align: left;
    padding-top: 20px;
    box-shadow: 0px 3px 5px -1px #ccc;
    z-index: 10;
}
.user-profile ul li ul li {
    clear: both;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    border-style: none;
}

.user-profile ul li ul li a:hover {
    padding-left: 10px;
    border-left: 2px solid #5BBB1E;
    transition: all 0.3s ease;
}
.user-profile ul li ul li a {
    text-decoration: none;
    color: #001c31;
    font-weight: 600;

    &:hover {
        color: #5BBB1E;
    }
}

.user-profile ul li ul li a { transition: all 0.5s ease; }

/* dashboard tabs */
.main-tabs {
    padding: 50px 0;
}

.tabs {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.tabs button {
    padding: 15px;
    font-size: 18px;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: inherit;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.tabs button:hover {
    background-color: #5BBB1E;
    color: white;
}

.tabs button.active {
    background-color: #001c31;
    color: white;
}

.tab-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.tab-content h2 {
    margin-top: 0;
    color: #333;
}

/* Additional styling for the User Profile Form */
.user-profile-form .form-group label {
    font-weight: bold;
}

.user-profile-form button {
    padding: 5px 15px;
    background: #5BBB1E;
    border: 1px solid #5BBB1E;
    outline: none;
    border-radius: 100px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.user-profile-form button::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #001c31;
    border: 1px solid #001c31;
    border-radius: 100px;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
}

.user-profile-form button:hover::before {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

  /* Additional styling for the Order Summary */
.order-summary table {
    width: 100%;
}

.order-summary th, .order-summary td {
    text-align: center;
    vertical-align: middle;
}

.order-summary th {
    background-color: white;
    color: #001c31;
}

.order-summary tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.order-summary .total {
    font-weight: bold;
}

/* Services */
.service {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.service h1 span{
    color: #5BBB1E;
}

/* Styling for the promo card */
.promo-card {
    background-color: #ffffff; /* White background */
    border-radius: 8px; /* Slightly rounded corners */
    padding: 40px 40px;
    max-width: 300px; /* Set the width */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
    text-align: start; /* Align text to the start (left) */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
    position: relative;
    overflow: hidden; /* To contain the image animation within the box */
    cursor: pointer;
}

/* Hover effect for smooth shadow and scaling */
.promo-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
    transform: translateY(-5px); /* Slight lift effect on hover */
}

/* Styling for the image fade and zoom effect */
.promo-image img {
    max-width: 100%; /* Image responsive to container size */
    opacity: 1; /* Start fully visible */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth fade and zoom effect */
    transform: scale(1); /* Default size of the image */
    margin: 50px 0;
}

/* Image fade and zoom on hover */
.promo-card:hover .promo-image img {
    opacity: 0.8; /* Slight fade out to 80% visibility */
    transform: scale(1.1); /* Zoom the image slightly (10% larger) */
}

/* Styling for the content inside the card */
.promo-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #4c7332; /* Dark green color */
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 16px;
    color: #4c7332; /* Same color as the title for consistency */
    margin-bottom: 15px;
}

/* Styling for the shop now button */
.shop-now {
    font-size: 16px;
    color: #4c7332;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #4c7332; /* Underline */
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect for the shop now button */
.shop-now:hover {
    color: #1e5631; /* Slightly darker green */
    border-color: #1e5631;
}

.category-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    padding: 40px 0;
}

.category-container .category-card {
    position: relative;
    width: 400px;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
                inset -5px -5px 5px rgba(255,255,255,0.05),
                5px 5px 5px rgba(0,0,0,0.05),
                -5px -5px 5px rgba(255,255,255,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-container .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-container .category-card .header {
    font-size: 24px;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.category-container .category-card .search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #001c31;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.category-container .category-card .search-bar input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.category-container .category-card .search-bar button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #001c31;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.category-container .category-card .search-bar button:hover {
    background-color: #5BBB1E;
}

.category-container .category-card .category-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid #001c31;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 20px;
}

.category-container .category-card .category-item {
    background-color: #001c31;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    color: #fff;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    transition:  0.3s all linear;
    cursor: pointer;
}

.category-container .category-card .category-item:hover {
    background-color: #5BBB1E;
    transform: translateY(-4px);
}

.category-item.active {
    background-color: #5BBB1E !important;
}

.category-container .category-card .tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    border-bottom: 2px solid #001c31;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.category-container .category-card .tags .tag {
    background-color: transparent;
    color: #001c31;
    padding: 5px 10px;
    border: 1px solid #001c31;
    border-radius: 15px;
    margin: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.category-container .category-card .tags .tag:hover {
    background-color: #001c31;
    color: #fff;
}

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 40px 0;
}
.service-container .service-card {
    position: relative;
    width: 320px;
    height: 440px;
    margin: 20px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),  /* Increased opacity */
                inset -5px -5px 5px rgba(255,255,255,0.05),
                5px 5px 5px rgba(0,0,0,0.05),
                -5px -5px 5px rgba(255,255,255,0.05);
    border-radius: 15px;
}
.service-container .service-card .box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: #ebf5fc;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}
.service-container .service-card .box .imgBx {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.service-container .service-card .box .imgBx img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
}
.service-container .service-card .box .imgBx h1 {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -20px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    transition: 0.5s all;
}
.service-container .service-card:hover .box {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.service-container .service-card .box .content {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    left: 0px;
    padding: 30px;
    transition: 0.5s all;
}
.service-container .service-card .box .content a {
    text-decoration: none;
    color:white;
}
.service-container .service-card .box .content a:hover h2 {
    color:#5BBB1E;
}
.service-container .service-card .box:hover .content {
    left: 0px;
}
.service-container .service-card .box:hover .imgBx h1 {
    top: -250px;
}

.product-category-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 40px 0;
}
.product-category-container .product-category-card {
    position: relative;
    width: 200px;
    height: 250px;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
                inset -5px -5px 5px rgba(255,255,255,0.05),
                5px 5px 5px rgba(0,0,0,0.05),
                -5px -5px 5px rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-category-container .product-category-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}
.product-category-container .product-category-card .cat-box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: #ebf5fc;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}
.product-category-container .product-category-card .cat-box .cat-imgBx {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.product-category-container .product-category-card .cat-box .cat-imgBx h4 {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    color: white;
    z-index: 1;
    font-size: 25px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                4px 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1; /* fully visible */
}
.product-category-container .product-category-card:hover .cat-box .cat-imgBx h4 {
    opacity: 0; /* fade out */
    transform: translateY(-10px); /* slide up slightly */
    z-index: 999;
}
.product-category-container .product-category-card .cat-box .cat-imgBx img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.product-category-container .product-category-card:hover .cat-box .cat-imgBx img {
    transform: scale(1.1);
}

/* Basic Styling */
.store-container {
    display: flex;
    gap: 20px;
}

.stor-card {
    position: relative;
    width: 300px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, height 0.4s ease;
    padding-bottom: 15px;
    perspective: 1500px; /* Increase perspective for a more intense 3D effect */
}

.stor-card:hover {
    transform: scale(1.05);
}

/* Image Section with 3D Effect */
.stor-imgBx {
    width: 100%;
    height: 250px;
    overflow: hidden;
    transition: transform 0.5s ease;
    transform-style: preserve-3d; /* Enables 3D effects */
}

.stor-imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center;
}

.stor-card:hover .stor-imgBx img {
    transform: rotateX(15deg) rotateY(15deg) scale(1.1); /* Adds 3D rotation and scale */
}

/* Card Details */
.store-details {
    padding: 15px;
    text-align: center;
}

.store-details h4 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #fff;
}

.store-details p {
    font-size: 0.9em;
    color: #fff;
}

/* View Details Button with 3D Effect */
.store-details .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #001c31;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px; /* Adjust margin to add space when shown */
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.stor-card:hover .store-details .btn-primary {
    transform: translateY(0);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D look */
}

/* 3D Press Effect on Button Hover */
.store-details .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

/* Social Links with Delay */
.social {
    position: absolute;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    transition: opacity 0.4s ease, right 0.4s ease;
}

.social a {
    background-color: #001c31;
    padding: 5px 10px;
    font-size: 1.6em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social a:nth-child(1) {
    color: #3b5998;
    transition-delay: 0.1s;
}

.social a:nth-child(2) {
    color: #1DA1F2;
    transition-delay: 0.2s;
}

.social a:nth-child(3) {
    color: #E1306C;
    transition-delay: 0.3s;
}

.social a:nth-child(4) {
    color: #0077B5;
    transition-delay: 0.4s;
}

.stor-card:hover .social {
    opacity: 1;
}

.social a:hover {
    color: #5BBB1E;
    transform: scale(1.2);
}

.social a::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0); /* Start at the icon's position */
    background-color: #001c31;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.5em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    max-height: 0; /* Initially hidden */
    overflow: hidden; /* Prevents overflow */
    transition: transform 0.3s ease, max-height 0.3s ease; /* Smooth transition */
}

/* Show label on icon hover */
.social a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50px); /* Moves label above the icon */
    max-height: 50px; /* Set a height to show the label */
}


/* testimonial */
.testimonial-bg {
    width: 100%;
    background-color: #001c31;
    padding: 50px;
}

/* headings */
.headings img {
    width: 100%;
}

.headings h3 {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 0 60px;
    color: #fff;
}

.headings p {
    font-size: 18px;
    font-weight: 400;
    padding: 0 0 0 65px;
    text-align: justify;
    color: #fff;
}

.headings .head-img {
    margin-top: -83%;
    margin-left: 40px;
}

/* about */
.header-img {
    position: relative;
    margin-bottom: 100px;
}

.header-img img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.header-img .bg-overlay {
    content: '';
    position: absolute;
    width: 100%;
    height: 70vh;
    top: 0;
    background-color: rgba(35 35 35 / 48%);
}

.header-img .content {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
}

.header-img .content h1 {
    font-size: 4rem;
    font-weight: 600;
}

.header-img .content h1 span {
    color: #5BBB1E;
}

.header-img .content p {
    font-size: 20px;
    text-transform: capitalize;
}

.header-img .content p span {
    color: #5BBB1E;
}

.our-story .col-md-12 {
    padding: 100px;
    text-align: center;
    margin-bottom: 100px;
}

.our-story .col-md-12 h2 {
    text-transform: uppercase;
    color: #5BBB1E;
    margin-bottom: 30px;
}

.main-descover {
    background-color: #001c31;
    width: 100%;
    margin-bottom: 200px;
}

.main-descover .head {
    text-align: center;
    padding: 100px;
    text-transform: uppercase;
}

.main-descover .head h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.main-descover .head h2 span {
    color: #5BBB1E;
}

.main-descover .media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 30px 0;
}

.main-descover .media .res {
    width: 400px;
    height: 300px;
    border: 10px solid #5BBB1E;
    border-radius: 30px;
}

.main-descover .media .res iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
}

.our-mission .img {
    text-align: center;
}

.our-mission .img img {
    width: 350px;
    height: 350px;
    border-radius: 30px;
}

.our-mission .content {
    padding: 40px 15px;
}

.our-mission .content h1 {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
}

.our-mission .content h1 span {
    color: #5BBB1E;
}

.our-mission .content p {
    font-size: 18px;
    text-align: justify;
    color: #fff;
}

.our-team .col-md-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-transform: uppercase;
}

.our-team .col-md-12 h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
}

.our-team .col-md-12 h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.our-team .col-md-12 h1 span {
    color: #5BBB1E;
}

.box-1 {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.team-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative; /* For positioning the black box */
    padding: 40px 0;
}

.team-row .row{
    justify-content: center;
    align-items: center;
}

.black-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust the height of the black box */
    background-color: black;
    transform: translateY(-50%);
    transition: 0.5s all;
    z-index: -1; /* Behind the cards */
}

.team {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 315px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 30px;
    z-index: 1;
}

.team img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team h4 {
    text-transform: uppercase;
    font-weight: 800;
}

.team h5 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    color: #5BBB1E;
}

.team ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    font-size: 20px;
}

.team ul li {
    border: 1px solid;
    padding: 4px 10px;
    border-radius: 100px;
    color: #5BBB1E;
    transition: .5s;
}

.team ul li:hover {
    color: #001c31;
}

.why-us .head {
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.why-us .head h2 {
    color: #5BBB1E;
    font-weight: 700;
    position: relative;
}

.why-us .head h2::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    top: 19px;
    left: 30%;
    background-color: #5BBB1E;
}

.why-us .head h1 {
    font-weight: 600;
    margin-bottom: 80px;
}

.why-us .head h1 span {
    color: #5BBB1E;
}

.why-us .img {
    width: 390px;
    height: 450px;
    margin: auto;
}

.why-us .img img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.our-contact .contact-head {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.our-contact .contact-head h2 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    color: #fff;
}

.our-contact .contact-head h2::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    top: 26px;
    left: 26%;
    background-color: #5BBB1E;
}

.our-contact .contact-head h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    top: 26px;
    right: 26%;
    background-color: #5BBB1E;
}

.our-contact .send h2 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
}

.our-contact .send h2::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    top: 26px;
    left: 24%;
    background-color: #5BBB1E;
}

.our-contact .send h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    top: 26px;
    right: 24%;
    background-color: #5BBB1E;
}

.our-contact .contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #001c31;
    width: 250px;
    height: 263px;
    border-radius: 20px;
    gap: 10px;
    transition: 0.5s;
}

.our-contact .contact-box:hover span {
    background: #5BBB1E;
}

.our-contact .contact-box  span {
    background: #001c31;
    padding: 2px 30px;
    border-radius: 10px;
    font-size: 4rem;
    color: white;
    transition: .2s;
}

.our-contact .contact-box h3 {
    font-size: 20px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.our-contact .contact-box a {
    text-decoration: none;
    font-size: 15px;
    color: white;
}

.our-contact .contact-form input {
    width: 100%;
}

.our-contact .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 0px solid #ccc;
    border-radius: 4px;
    padding-right: 40px;
    border-bottom: 2px solid #001c31;
}

.our-contact .contact-form textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid #001c31;
}

.our-contact .contact-form button {
    width: 100%;
    background-color: #5BBB1E;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #5BBB1E;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}

.our-contact .contact-form button:hover {
    border: 1px solid #001c31;
    background-color: #001c31;
}

.our-faq .faq-box {
    margin-bottom: 30px;
    background-color: rgb(35 35 35) !important;
    border-color: #001c31 !important;
}

.our-faq .faq-head {
    text-align: center;
    text-transform: uppercase;
}

.our-faq .faq-head h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.our-faq .accordion-item {
    background: transparent;
    border-color: #001c31;
    border-radius: 5px;
}

.our-faq .accordion-button {
    background: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    box-shadow: none;
}

.our-faq .accordion-button::after {
    filter: brightness(1000);
}

.blog-box-left .blog-img {
    /* width: 610px;
    height: 350px; */
    margin-bottom: 30px;
}

.blog-box-left .blog-img img {
    /* width: 610px;
    height: 350px; */
    object-fit: cover;
    border-radius: 30px;
}

.blog-box-left .blog-content {
    /* width: 600px; */
    text-align: justify;
    border-bottom: 2px solid #001c31;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #fff;
}

.blog-box-left .author {
    /* width: 600px; */
    display: flex;
    gap: 10px;
}

.blog-box-left .author-img img {
    width: 60px;
    height: 60px;
    border: 1px solid #001c31;
    border-radius: 100px;
    object-fit: cover;
}

.blog-box-left .author-content {
    width: 100%;
    position: relative;
    color: #fff;
}

.blog-box-left .author-content a {
    position: absolute;
    top: 10px;
    right: 0;
    padding: 5px 15px;
    border: 1px solid;
    border-radius: 50px;
    text-decoration: none;
    color: #5BBB1E;
    transition: .2s all;
}

.blog-box-left .author-content a:hover {
    color: #001c31;
    font-weight: 600;
}

.blog-box-right h2 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.blog-box-right .populer-post {
    display: flex;
    gap: 10px;
}

.blog-box-right .populer-post .post-img img {
    /* width: 200px;
    height: 200px; */
    border-radius: 10px;
    object-fit: cover;
}

.blog-box-right .populer-post .post-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-box-right .populer-post .post-content h3 a {
    text-decoration: none;
    color: #fff;
}

.blog-box-right .populer-post .post-content .profile span {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.blog-box-right .populer-post .post-content .profile span span {
    color: #5BBB1E;
}

.blog-box-right .letter-box {
    background-color: #e1e1e1;
    padding: 30px 40px;
}

.blog-box-right .letter-box h2 {
    font-size: 22px;
}

.blog-box-right .letter-box .newsletter-form input {
    width: 100%;
    padding: 10px;
    border: 2px solid #001c31;
    margin-bottom: 10px;
}

.blog-box-right .letter-box .newsletter-form input:focus {
    outline: none;
}

.blog-box-right .letter-box .newsletter-form button {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #001c31;
    font-weight: 600;
    outline: none;
    border-radius: 10px;
}

.our-serice {
    margin-bottom: 150px;
}

.our-serice .section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
}

.our-serice .section h2 span {
    color: #5BBB1E;
}

.our-serice .section p {
    font-size: 18px;
    text-align: justify;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
}

.our-serice .img {
    width: 390px;
    height: 400px;
    margin: auto;
}

.our-serice .img img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.service-card .search-box {
    margin-bottom: 20px;
    position: relative;
}

.service-card .search-box input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #001c31;
    position: relative;
    padding-right: 48px;
    transition: .5s;
}

.service-card .search-box input:focus {
    border: 1px solid #5BBB1E;
    outline: none;
}

.service-card .search-box button {
    font-weight: 500;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #001c31;
    padding: 10px 12px;
    position: absolute;
    right: 0;
    transition: .5s;
}

.service-card .search-box button:hover {
    background-color: #001c31;
    border: 1px solid #001c31;
    color: #fff;
}

.service-card .cat h3 {
    position: relative;
    margin-bottom: 20px;
}

.service-card .cat h3::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #001c31;
    bottom: -5px;
}

.service-card .categories ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-card .categories ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 0 0;
}

.service-card .categories ul li a {
    text-decoration: none;
    color: #000;
}

.service-card .tags ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
}

.service-card .tags ul li {
    border: 1px solid #001c31;
    padding: 0 10px;
    border-radius: 5px;
}

.service-card .tags ul li a {
    text-decoration: none;
    color: #001c31;
    font-size: 14px;
}

.service-card .card-section {
    /* width: 350px;
    height: 310px; */
    background-color: #0D3A5E;
    padding: 60px 20px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 60px;
}

.image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #5BBB1E;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

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

.card-content {
    padding-top: 60px;
    position: relative;
    z-index: 0;
}

.card-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

.card-content p {
    font-size: 14px;
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5BBB1E;
    color: #0D3A5E;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.read-more:hover {
    background-color: #5BBB1E;
}

.descover-media-service .head a {
    border: 1px solid #5BBB1E;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    background: #5BBB1E;
    font-weight: 600;
}

.descover-media-service .media .img {
    width: 400px;
    height: 300px;
}

.descover-media-service .media .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid #5BBB1E;
}

.we-offer .img {
    width: 409px;
    height: 509px;
    margin-bottom: 150px;
}

.we-offer .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.we-offer .section {
    margin: 10px auto;
}

.we-offer .section h2 {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
}

.we-offer .section h2 span {
    color: #5BBB1E;
}

.we-offer .section ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.we-offer .section ul li {
    display: flex;
    align-items: center;
    gap: 20px;

}

.we-offer .section ul li .content {
    padding: 10px 0 0 0;
}

.we-offer .section ul li .content h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.we-offer .section ul li .content p {
    font-size: 15px;
    color: #fff;
}

/* Auth pages */
/* Login container */
.login-container {
    display: flex;
    /* height: 100vh; */
    margin-bottom: 100px;
}

/* Left side image */
.login-image {
    width: 50%;
    background-color: #f5f5f5;
    position: relative;
}

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

/* Right side container with border */
.login-form-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(35 35 35);
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Right side form */
.login-form {
    width: 100%;
    padding: 40px;
    background-color: rgb(35 35 35);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.login-form form {
    width: 50%;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.form-group input {
    width: 100% !important;
    padding: 10px;
    font-size: 16px;
    border: 0px solid #ccc;
    border-radius: 4px;
    padding-right: 40px;
    border-bottom: 2px solid #001c31;
}

.form-group input:focus {
    outline: none;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid #001c31;
}

.form-group .icon {
    position: absolute;
    bottom: 13px;
    right: 9px;
    font-size: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-options label {
    font-size: 14px;
    color: #fff;
}

.forgot-password {
    font-size: 14px;
    color: #28a745;
    text-decoration: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #5BBB1E;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.5s;
}

.login-button:hover {
    background-color: #001c31;
}

.signup-link {
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
}

.signup-link a {
    color: #28a745;
    text-decoration: none;
}

.social-auth {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-auth a {
    text-decoration: none;
    color: #001c31;
    border: 1px solid #001c31;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.5s;
}

.social-auth a:hover {
    background-color: #001c31;
    border-radius: 0px;
    color: white;
}

@media (max-width: 1368px) {

    .headings .head-img {
        margin-top: -75%;
        margin-left: 40px;
    }

    .our-contact .contact-head h2::before {
        left: 22%;
    }

    .our-contact .contact-head h2::after {
        right: 22%;
    }
}

@media (max-width: 1068px) {

    .headings .head-img {
        margin-top: -50%;
        margin-left: 20px;
    }

    .black-box {
        display: none;
    }

    .header-img .ser h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .our-contact .contact-head h2::before {
        left: 17%;
    }

    .our-contact .contact-head h2::after {
        right: 17%;
    }
}

@media (max-width: 968px) {
    .headings .head-img {
        margin-top: -15%;
        margin-left: 7px;
    }

    .headings h3 {
        font-size: 45px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0 0 0 10px;
    }
    .headings p {
        font-size: 18px;
        font-weight: 400;
        padding: 0 0 0 12px;
        text-align: justify;
    }

    .our-contact .contact-head h2::before {
        left: 6%;
    }

    .our-contact .contact-head h2::after {
        right: 6%;
    }
}

@media (max-width: 868px) {

    .login-image, .login-form-wrapper {
        width: 100%;
    }

    .header .content h1 {
        font-size: 50px;
    }

    .header-img .ser h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .black-box {
        display: none;
    }

    .headings .head-img {
        margin-top: -15%;
        margin-left: 7px;
    }

    .headings h3 {
        font-size: 45px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0 0 0 10px;
    }
    .headings p {
        font-size: 18px;
        font-weight: 400;
        padding: 0 0 0 12px;
        text-align: justify;
    }

    .header-img .content h1 {
        font-size: 2rem;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column; /* Stack image and form vertically */
    }

    .login-image, .login-form-wrapper {
        width: 100%; /* Full width for both image and form */
    }

    .login-form-wrapper {
        margin: 20px; /* Reduce margin on smaller screens */
        max-width: 100%; /* Ensure form stays within screen width */
    }

    .header .content h1 {
        font-size: 39px;
    }
    .header .content {
        width: 500px;
    }

    .header-img .content h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .header-img .ser h1 {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .headings .head-img {
        margin-top: 4%;
        margin-left: 4px;
        margin-bottom: 40px;
    }

    .header-img .content h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    .our-contact .contact-head h2::before {
        left: -10%;
    }

    .our-contact .contact-head h2::after {
        right: -10%;
    }

    .tab-content {
        margin-left: 0;
        margin-top: 20px;
    }

    .login-form-wrapper {
        margin: 20px 0 0 0;
    }

    .login-image .image {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 568px) {
    .header .content h1 {
        font-size: 20px;
    }
    .header .content {
        width: 300px;
    }
    .header-img .content h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    .header-img .ser h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    .headings .head-img {
        margin-top: 5%;
        margin-left: 1px;
        margin-bottom: 40px;
    }

    .header-img .content h1 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .our-contact .contact-head h2::before {
        /* width: 50px;
        left: -1%; */
        display: none;
    }

    .our-contact .contact-head h2::after {
        /* width: 50px;
        right: -1%; */
        display: none;
    }
    
    .nav-links {
        width:250px;
    }
    
    nav .auth-btn a:nth-child(1) {
        display: none;
    }
    
    nav .auth-btn a:nth-child(2) {
        display: none;
    }
    
    nav .auth-btn .cartBtn {
        display: flex !important;
    }
    
    .service-card {
        justify-content: center;
    }
    
    .owl-carousel .owl-item img {
        display: block;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    
    .user-profile {
        gap: 15px !important;
        justify-content: center;
        align-items: center;
    }
    
    .user-profile ul li {
        padding: 0 15px !important;
    }
    .search-input {
        left: -45px;
    }
    .enter-button {
        right: -25px;
    }
}

@media (max-width: 368px) {
    .login-form  {
        width:100%;
    }
    .form-group input {
        width: 100%;
    }
    .search-input {
        left: -45px;
    }
    .enter-button {
        right: -25px;
    }
}

/* footer */
footer .container {
    color: white;
}

footer .log {
    padding: 60px 0 30px 0;
}

footer .descover-more {
    padding: 60px 0 30px 0;
}

footer .descover-more {
    padding: 60px 0 30px 0;
}

footer .log ul {
    list-style-type: none;
}

footer .log ul li span{
    margin: 0 10px 0;
    font-size: 18px;
    letter-spacing: 2px;
}

footer .descover-more {
    text-transform: uppercase;
}

footer .descover-more h4 {
    margin-bottom: 25px;
    font-weight: 600;
}

footer .descover-more ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

footer .descover-more ul li a {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: .2s;
}

footer .descover-more ul li a:hover {
    color: #5BBB1E;
}

footer .newsletter {
    text-transform: uppercase;
    padding: 60px 0 30px 0;
}

footer .newsletter h4 {
    padding: 0 0 25px 0;
    font-weight: 600;
}

footer .newsletter h5 {
    padding: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
}

footer .newsletter .news {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 0 25px 0;
}

footer .newsletter .news input {
    width: 100%;
    padding: 10px;
    border: 1px solid #001c31;
    border-radius: 6px;
}

footer .newsletter .news button {
    padding: 10px;
    background-color: transparent;
    border: 1px solid #5BBB1E;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s all;
}

footer .newsletter .news button:hover {
    background-color: #5BBB1E;
    color: #001c31;
}

footer .newsletter ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 30px;
    margin-bottom: 0;
    font-size: 25px;
}

footer .newsletter ul li {
    font-size: 25px;
    border: 1px solid #5BBB1E;
    padding: 4px 11px;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
}
footer .newsletter ul li:hover {
    background-color: #5BBB1E;
    color: #001c31;
}
