@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body {
    font-family: "Josefin Sans", sans-serif;
}

p {
    margin-bottom: 0;
}
a{text-decoration:none !important;}
.megamenu
a {
    text-decoration: none;
}

.common-padding {
    padding: 0px 70px;
}

.fixed-top.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    /* Example color */
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.fixed-top.scrolled .top_head {
    display: none;
}

.top_head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 15px;
    border-radius: 48px;
    background-color:#fff;
    padding: 15px;
}

.top_head p {
    color: #000877;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background: transparent;
    color: white;
}

.navbar .logo {
    font-size: 34px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu ul {
    list-style: none;

    gap: 20px;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.nav-menu ul li a span {
    font-size: 10px;
    margin-left: 5px;
}

.fixed-top.scrolled .nav-menu ul li a {
    color: #000;
    font-size: 14px;
}

/*ul.dropdown li a:hover {*/
/*    background-color: #000877;*/
/*    color:#fff;*/
/*}*/

.navbar-right {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background-color: #000877;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    display: flex;
    justify-content: Center;
    align-items: center;
    color: white;
    cursor: pointer;
}

.icon-btn-2 {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #000877;
    border-radius: 90px;
    display: flex;
    justify-content: center;
}

.icon-btn-2 img {
    width: 18px;
}

.icon-btn i {
    margin-left: 8px;
}

.icon-btn span {
    margin-right: 5px;
}

/* Add hover effects */
.nav-menu ul li a:hover,
.icon-btn:hover {
    color: #000877;
    transition: all 0.3s ease;
}

.main_banner_img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
}

.banner_cont {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000877 0%, rgba(0, 56, 63, 0) 100%);
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 7%;
}

/* Basic menu styles */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.menu>li {
    position: relative;
}

.menu>li a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    display: inline-block;
    font-size: 14px;
}

.menu>li a:hover {
    color: #000877;
}

/* Dropdown styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border: 1px solid #ddd;
    display: none;
    /* Initially hidden */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}



.dropdown li a {
    padding: 10px;
    display: block;
    color: black;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s ease;
}
.nav-menu ul li ul.dropdown li a {
    color: black;
}
.dropdown li a:hover {
    background-color: #000877;
    color:#fff;
}

.dropdown {
    display: none;
}
@media (min-width: 1199.98px) {
/* Show dropdown on hover */
.menu>li:hover .dropdown {
    display: block !important;
    /* Dropdown becomes visible on hover */
}
.dropdown li {
    width: 200px;
}
}
.nav-menu ul li ul.dropdown li a:hover {
    color: #fff;
}

/* Mega Menu Styles */
.menu>li.has-megamenu {
    position: static !important;
}

.megamenu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    padding: 30px 30px;
    border-top: 1px solid #eee;
    height:400px;
    overflow-y:scroll;
}

.menu>li:hover .megamenu {
    display: block !important;
}

.megamenu-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.megamenu-column {
    flex: 0 0 calc(20% - 24px);
    /* 5 columns grid */
    min-width: 180px;
}

.megamenu-column h6 {
    font-weight: 700;
    color: #000877;
    margin-bottom: 0px;
    margin-top:0px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top:0px;
    padding-bottom:0px;
}

.nav-menu ul .megamenu-column h6 a {
    font-size:14px;
    padding:3px 0px;
    color:#000877;
}

.megamenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-column ul li {
    margin-bottom: 8px;
}

.megamenu-column ul li a {
    color: #666 !important;
    font-size: 13px;
    padding: 0 !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.megamenu-column ul li a:hover {
    color: #000877 !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.banner_cont h6 {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
}

.banner_cont h1 {
    color: #fff;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    /* 120% */
    margin-bottom: 30px;
    position: relative;
}

.banner_cont h1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 10%;
    height: 5px;
    background-color: #00c99e;
    border-radius: 10px;
}

.banner_cont button {
    border-radius: 33px;
    background: #000877;
    box-shadow: 0px 0px 20px 10px rgba(2, 165, 118, 0.1);
    padding: 10px 40px;
    width: fit-content;
    border: 0;
    line-height: 25px;

    color: white;
    font-size: 15px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-self: center;
}

.baner_search p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 110px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
}

/* Category Dropdown */
.search-category {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.search-category label {
    margin-bottom: 5px;
    padding-left: 10px;
    color: #90a6ac;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.search-category select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Product Search Input */
.search-input {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-right: 15px;
}

.search-input label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.search-input input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    padding: 5px;
}

/* Search Button */
.search-button {
    background-color: #033744 !important;
    color: white;
    border: none;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #025761;
}

.search-button span {
    font-size: 16px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-pagination-bullet-active {
    background-color: white !important;
}

.main_pt {
    padding-top: 80px;
}

.pr_1 {
    background-image: url(../images/index/p1.png);
    width: 100%;
    height: auto;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
}

.pr_2 {
    background-image: url(../images/index/p2.png);
    width: 100%;
    height: auto;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
}

.product_img img {
    width: 100%;
}

.product_cont .badge h6 {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    margin-bottom: 0;
}

.product_cont .badge {
    border-radius: 28px;
    background: #000877;
    padding: 10px;
}

.product_cont h3 {
    color: #000877;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
}

.buy_btn {
    border-radius: 33px;
    background: #000877;
    padding: 10px 20px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 20px;
}

.w-40 {
    width: 64%;
}

.w-24 {
    width: 38%;
}

.head_Flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.head_Flex h3 {
    color: #000877;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    /* 130.435% */
    letter-spacing: -0.92px;
    margin-bottom: 0px;
}

.nav-tabs .nav-link {
    border-radius: 30px;
    background: white;
    color:#000877;
    margin-left: 10px;
    font-weight: 600;
}

.nav-tabs .nav-item.show .nav-link{
    background: white;
    color:#000877;
}

.nav-tabs .nav-link.active {
    background: #000877;
    color: white;
}

.nav-tabs {
    border-bottom: 0;
}

.pr_box {
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    background: #fff;
    position: relative;
    padding: 10px 10px;
}

.pro_top_block {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 444;
}

.pr_box img {
    width: 100%;
}

.pr_box h6 {
    color: #000877;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}

.pr_box h4 {
    color: #4F6DFF;
    font-size: 19px;
    font-family: "Outfit", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.44px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0px 0px;
}

/* Rating Section */
.rating {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    font-size: 14px;
    color: #ffa500;
}

.rating .stars {
    font-size: 16px;
    color: #ffa500;
}

.rating .reviews {
    font-size: 14px;
    color: #333;
}

/* Price Section */
.price {
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 16px;
    font-weight: bold;
    color: #000877;
}

.original-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #aaa;
    margin-top: 5px;
}

/* Add to Cart Button */
.add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #4F6DFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart img {
    width: 20px;
    margin-top: -4px;
}

.add-to-cart:hover {
    background-color: #000877;
}

.cart-icon {
    font-size: 18px;
}

.offer_Section {
    position: relative;
}

/*
.offer_Content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
*/

.offer_Content h6 {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;

    background-color: #000877;
    padding: 10px;
    border-radius: 30px;
    width: fit-content;
}

.offer_Content h2 {
    color: #000877;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    padding-top: 20px;
    letter-spacing: -0.68px;
}

.offer_Content h5 {
    color: #000877;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
}

.offer_Content h5 span {
    font-size: 24px;
    font-weight: 700;
}

.offer_Content button {
    border-radius: 33px;
    background: #000877;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 20px;
    margin-top: 20px;
}

/* Countdown Container */
.countdown {
    display: flex;
    gap: 15px;
    justify-content: left;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

/* Time Box Styling */
.time-box {
    background-color: #00a77a;
    color: white;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.time {
    font-size: 22px;
    font-weight: bold;
    display: block;
}

.label {
    font-size: 13px;
    margin-top: 5px;
    text-transform: uppercase;
}

.off_main_img {
    height: auto;
}

.testimonial_Section {
    background-color: #000877;
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.testi-content h3 {
    color: #fff;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    /* 118.75% */
    letter-spacing: -0.64px;
}

.testi-content {
    padding-top: 50px;
}

.testi_Flex {
    display: flex;
    padding-top: 10px;
}

.testi_Flex h5 {
    color: #000877;
    font-family: "Outfit", sans-serif;

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    letter-spacing: 0.4px;
    padding-top: 20px;
}

.testi_name {
    display: flex;
    padding-top: 20px;
}

.testi_name h4 {
    color: #fff;
    font-family: "Outfit", sans-serif;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    margin-bottom: 0;
}

.testi_name p {
    color: #000877;
    font-family: "Outfit", sans-serif;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
}

.show_more {
    color: #fff;
    font-family: "Outfit", sans-serif;

    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    border-radius: 30px;
    background: #000877;
    border: 0;
    padding: 9px 18px;
    height: fit-content;
}

.blog_box {
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    background: #fff;
    padding: 20px;
}

.blog_box img {
    width: 100%;
}

.blog_box p {
    color: #999;
    font-family: "Outfit", sans-serif;

    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    padding-top: 15px;
}

.blog_box p span {
    color: #000877;
    font-family: "Outfit", sans-serif;

    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
}

.blog_box h3 {
    color: #000877;
    font-family: "Outfit", sans-serif;

    font-size: 18px;
    padding-top: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.44px;
}

.blog_box .show_more {
    width: 100%;
    margin-top: 10px;
}

.news_letter {
    background-image: url("../images/index/news.png");
    width: 100%;
    background-size: cover;
    height: auto;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
}

.news_section h6 {
    color: #000877;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    text-align: center;
}

.news_section h3 {
    color: #000877;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    /* 130.435% */
    letter-spacing: -0.92px;
}

.news_section p {
    color: #000877;
    text-align: center;
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
}

.news_input {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.news_input input {
    border-radius: 580px;
    border: 1px solid #000877;
    background: #000877;
    box-shadow: 0px 0px 20px 10px rgba(2, 165, 118, 0.1);
    border: 0;
    padding: 15px 20px;
    width: 500px;
    color: white;
}

.news_input input::placeholder {
    color: white;
}

.news_input button {
    color: #000877;
    font-family: Outfit, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 580px;
    background: #fff;
    border: 0;
    margin-left: -60px;
}

.features {
    padding-bottom: 50px;
}

.features {
    display: flex;
    justify-content: space-between;
}

.feature_box h5 {
    color: #4F6DFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-bottom: 0;
}

.feature_box {
    display: flex;
    align-items: center;
}

.feature_box p {
    color: #999;
    font-family: Outfit, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.28px;
}

.footer {
    background-color: #000877;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    margin: 0 auto;
}

.footer-section {
    margin-bottom: 20px;
}

.logo-section .logo {
    font-size: 24px;
    font-weight: bold;
    font-family: Outfit, sans-serif;
}

h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-section p,
.footer-section a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
    word-break: break-word;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.payment-icons img {
    width: 100%;
    height: 24px;
    margin-right: 10px;
}

.footer-bottom p {
    font-size: 14px;
    font-family: "Outfit", sans-serif;
}

.desk_none {
    display: none;
}

.product-img-box {
    height: 300px;
    position: relative;
}

.product-img-box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    width: auto;
}

.out-stock {
    color: rgb(62, 33, 3);
}


#searchForm {
    display: flex;
    justify-content: Center;
}

#searchInput {
    display: none;
    /* Hidden initially */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin-top: 30px;
    width: 100%;
    /* Full-width container for centering */
    text-align: center;
    position: fixed;
    top: 110px;
    z-index: 555;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-lefT: auto;
    margin-right: auto;
}

#searchInput input {
    border-radius: 580px;
    border: 1px solid #4e5d9f;
    background: #4e5d9f;
    /*box-shadow: 0px 0px 20px 10px rgba(2, 165, 118, 0.1);*/
    border: 0;
    padding: 15px 20px;
    width: 500px;
    color: white;
    margin-right: 10px;
    /* Add spacing between input and button */
}

#searchInput input::placeholder {
    color: white;
}

#searchInput button {
    color: #000877;
    font-family: Outfit, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 580px;
    background: #fff;
    border: none;
    /*border-color: #144f3f;*/
}

.icon-btn a {
    color: #fff;
}

header {
    padding-top: 10px;
    padding-bottom: 10px;
}

.fa-bars {
    font-size: 33px;
    color: #000000;
}

.wish_count {
    color: #fff;
}

.logo{width:150px;}

/* Promo Grid System */
.promo-row {
    display: flex;
    gap: 24px;
    /* Matches typical grid gap */
    margin-bottom: 24px;
    /* Removed fixed height */
}

.promo-row:last-child {
    margin-bottom: 0;
}

.promo-col {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.promo-col a,
.promo-tall a {
    display: block;
    width: 100%;
    height: 100%;
    /* Ensure anchor fills the stretched flex item */
}

.promo-wide {
    flex: 1.6;
    /* Approx 62% - 38% split */
}

.promo-narrow {
    flex: 1;
}

.promo-col img,
.promo-tall img {
    width: 100%;
    height: 100%;
    /* Forced to fill container to match neighbor height */
    display: block;
    transition: transform 0.5s ease;
}

.promo-tall {
    position: relative;
    height: 100%;
    /* Fill the column height */
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Premium Hover Effect */
.promo-col:hover img,
.promo-tall:hover img {
    transform: scale(1.05);
}

.category-list{max-height:500px;overflow-y:auto;}
.fixed-top.scrolled .logo{width:100px;}
.ftr-logo{width:150px;}
@media (max-width: 991.98px) {

    .icon-btn-2,
    .icon-btn {
        width: 80px;
    }
    .promo-row {
        gap: 15px;
        margin-bottom: 15px;
    }

    .promo-tall {
        margin-top: 15px;
    }
}

/* Brands Section */
.brand_Grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.brand_Item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.brand_Item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
    border-color: #000877;
}

.brand_Img_Box {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #fdfdfd;
    border-radius: 8px;
    padding: 10px;
}

.brand_Img_Box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand_Item:hover .brand_Img_Box img {
    transform: scale(1.05);
}

.brand_Name {
    font-size: 16px;
    font-weight: 600;
    color: #000877;
    text-align: center;
    font-family: "Outfit", sans-serif;
}

@media (max-width: 992px) {
    .brand_Grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 576px) {
    .brand_Grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .brand_Item {
        padding: 15px 10px;
    }

    .brand_Img_Box {
        height: 70px;
    }

    .brand_Name {
        font-size: 14px;
    }
    .promo-row {
        flex-direction: column;
    }

    .promo-col,
    .promo-tall {
        /* No fixed height */
    }
}

/* Concerns Section */
.concern_Grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.concern_Item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.concern_Img_Box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fbfd;
    border: 2px solid #eef6f4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    padding: 15px;
}

.concern_Img_Box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.concern_Item:hover .concern_Img_Box {
    border-color: #000877;
    background: #fff;
    box-shadow: 0 10px 20px rgba(2, 165, 118, 0.15);
    transform: translateY(-5px);
}

.concern_Item:hover .concern_Img_Box img {
    transform: scale(1.1);
}

.concern_Name {
    font-size: 15px;
    font-weight: 600;
    color: #000877;
    text-align: center;
    font-family: "Outfit", sans-serif;
    transition: color 0.3s ease;
}

.concern_Item:hover .concern_Name {
    color: #000877;
}

@media (max-width: 768px) {
    .concern_Grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }

    .concern_Img_Box {
        width: 100px;
        height: 100px;
    }
}