


/* always have logo in images folder inside git folder only
find bootstrap svg code online for symbol */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}



/* THIS IS ADDED ON JAN 21 TUE  works for laptop*/


.dropdown {
    display: none;
    position: absolute;
    /* background-color: white; */
    background-color: #FFFFFF;
    list-style: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 10px 0;
}

#navbar-links li:hover .dropdown {
    display: block;
}
@media (max-width: 768px) {
    #navbar-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
.dropdown {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

#navbar-links li:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
}





/* THIS IS ADDED ON JAN 21 TUE works for laptop */



/* jan 21 jan 21 works for mobile */
/* Basic Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* background-color: #333; */
    background-color: #121212;
    /* color: white; */
    color:#FFFFFF;
}

#navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#navbar-links li {
    margin-left: 20px;
}

#navbar-links a {
    text-decoration: none;
    color:#FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
}

#navbar-links a:hover {
    /* background-color: #575757; */
    background-color: #333333;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 20px;
        color:#FFFFFF;
        cursor: pointer;
    }

    #navbar-links {
        display: none;
        flex-direction: column;
        /* background-color: #333; */
        background-color: #121212;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #navbar-links.active {
        display: flex;
    }

    #navbar-links li {
        margin: 0;
        text-align: left;
        padding: 10px 20px;
    }
}

/* jan 21  jan 21 works for mobile*/







body {
    /* background-color: white */
    /* background: #f4f4f4; */
    background-color: #FFFFFF;
}

button {
    border: 0;
}

/* NAVIGATION BAR */

nav {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: 0.3s ease-in-out
}

#navbar {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    place-items: center;
    padding: 12px;
}

#navbar-logo img {
    width: 140px;
    height: 70px
}

#navbar-links {
    display: flex;
    flex-direction: row;
    place-items: center;
}

#navbar-links ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}

#navbar-links li {
    margin-left: 60px;
}

#navbar-links a {
    text-decoration: none;
    /* color: rgb(64, 64, 64); */
    color:#121212;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

#navbar-links ul > li > a:hover {
    /* color: rgb(65, 105, 255); */
    color:#0099FF;
}

#navbar-tools {
    display: flex;
    flex-direction: row;
    margin-left: 60px;
}

#navbar-tools a {
    display: flex; 
    place-items: center
}

.collection-tools span {
    background-color: red; 
    width: 17px; 
    height: 17px; 
    border-radius: 50%; 
    color: #FFFFFF; 
    font-size: 13px; 
    display: flex; 
    justify-content: center; 
    place-items: center;
    position: relative; 
}

#navbar-tools span {
    bottom: 8px; 
    right: 10px;
}

.wishlist-link {
    margin-left: 15px
}

/* MENU BAR & MENU PAGE */

#menu-bar {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    width: 30px;
    height: 30px;
    display: none;
    place-items: center;
}

#menu-page {
    /* background-color: #edf2fb; */
    background-color: #FFFFFF;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999;
    display: none;
}

#menu-page.active {
    display: flex
}

#menu-page-wrapper {
    width: 100%;
    margin: auto;
    text-align: center;
}

#menu-page-wrapper ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

#menu-page-wrapper ul li {
    padding: 15px;
}

#menu-page-wrapper ul li a {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    text-decoration: none;
    font-size:16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased
}

#menu-tools {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#menu-tools span {
    bottom: 35px;
    left: 10px;
}

#menu-page-wrapper .blue-button {
    padding: 14px 30px;
    border-radius: 3px;
    font-size: 16px;
    margin-top: 30px;
}

/* PRODUCT PAGE'S MAIN BODY */

#product-page-body {
    padding: 0 100px
}

/* TOP SECTION OF MAIN BODY */

#product-top-container {
    padding-top: 125px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

 
/*  this is for welcome segment*/
#product-top-wrapper {
    /* background-color: #edf2fb; */
    background-color:#0099FF;;
    width: 100%;
    height: 320px;
    overflow: hidden;
    padding: 100px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    place-items: center;
    justify-content: space-between;
}

#product-top-text-section {
    width: 52%;
}

#product-top-text-section h1 {
    /* color:rgb(64, 64, 64); */
    color:#121212;
    font-size: 23px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased
}

#product-top-text-section h2 {
    /* color:rgb(64, 64, 64); */
    color:#121212;
    font-size: 45px;
    font-weight: 500;
}

#product-top-text-section p {
    /* color: rgb(137, 137, 137); */
    color:#121212;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.blue-button {
    /* background-color: #3b71dc; */
    background-color: #0099FF;
    color: #FFFFFF;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s ease-in-out;
}

.blue-button:hover {
   background-color: #0099FF;
    /* background-color: rgb(102, 136, 240); */
}

#product-top-text-section button {
    padding: 15px 45px;
    border-radius: 5px;
    font-size: 17px;
}

#product-top-image-section {
    /* background-color: #c7d5f1; */
    background-color: #0099FF;
    width: 420px;
    height: 420px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    place-items: center;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
}

#product-top-image-section img {
    height: 82%;
    width: auto;
}

#product-top-image-section:hover {
    animation: shake 0.5s linear infinite;
    cursor: pointer;
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg)
    }
    50% {
        transform: rotate(0deg)
    }
    75% {
        transform: rotate(-3deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

/* PRODUCT CATEGORY SECTION */

#product-category-container {
    margin-top: 45px;
}

#product-category-text {
    margin-bottom: 45px;
    display: flex;
    place-items: center;
}

.blue-line {
    height: 40px;
    width: 15px;
    margin-right: 15px;
    background-color:#333333;
    border-radius: 20px;
}

.section-category-text {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    font-weight: 500;
    font-size: 25px;
}

#product-category-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.product-category {
    width: 375px;
    height: 100px;
    overflow: hidden;
    display: flex;
    flex-direction: row; 
    justify-content: start;
    place-items: center;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 0 30px  rgba(129, 129, 129, 0.1);
    transition: 0.3s ease-in-out;
}

.product-category:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.product-category-image-section {
    /* background-color: rgb(231, 238, 252); */
   background-color:#0088CC;
    display: flex;
    justify-content: center;
    place-items: center;
    padding: 10px;
    width: calc(120px - 20px);
    height: calc(100% - 20px);
}

.product-category-image-section img {
    max-width: 97%;
    max-height: 97%;
    object-fit: contain;
}

.product-category-desc-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    height: 100%;
    flex-grow: 1;
}

.product-category-desc-section .product-category-type {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    font-weight: 500;
    font-size: 18px;
}

.product-category-desc-section .product-category-number {
    /* color: rgb(137, 137, 137); */
    color:#121212;
    font-size: 15px;
}

/* PRODUCTS SECTION */

.product-section {
    text-align: center;
    margin-top: 80px;
}

.product-section-top-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    place-items: center
}

.section-category-container {
    display: block
}

.section-category-type {
    display: flex;
    place-items: center;
}

.section-category-container h1 {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    font-size: 40px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 40px;
}

.slideshow-buttons-container {
    display: flex;
    flex-direction: row
}

.slideshow-button {
    /* background-color: rgb(237, 237, 237); */
   background-color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    place-items: center;
    box-shadow: 0 2px 15px rgba(71, 71, 71, 0.1)
}

.slideshow-buttons-container.top {
    display: flex
}

.slideshow-buttons-container.bottom {
    display: none
}

.prev-button {
    margin-right: 15px
}

.product-cards-container {
    width: 100%;
    display: flex;
    justify-content: start;
}

.product-cards-container ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
}

.product-cards-container .product-card {
    background-color:#0088CC;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(71, 71, 71, 0.1);
    text-align: left;
    overflow: hidden;
    transition: 0.8s ease-in-out;
    width: 0;
    height: 0;
}

:root {
    --product-card-width: 260px;
    --product-card-height: 379px
}

.product-card.active {
    width: var(--product-card-width);
    height: var(--product-card-height)
}

.product-cards-container .product-card:hover {
    transform: scale(1.1)
}

.product-image-container {
    /* background-color: rgb(231, 238, 252); */
   background-color: #333333;
    padding: 20px;
    height: 198px;
    display: flex;
    justify-content: center;
    place-items: center;
    position: relative
}

.product-image-container img {
    max-width: 100%;
    height: 100%;
    object-fit: contain
}

.product-image-container .heart-button {
    /* background: white; */
    background-color: #FFFFFF;
    color: rgb(64, 64, 64);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    place-items: center;
    padding: 8px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-image-container .heart-button svg {
    stroke: rgb(64, 64, 64);
    fill: none;
}

.product-image-container .heart-button.active svg {
    stroke: red;
    fill: red;
}

.product-text-container {
    padding: 16px;
}

/* fo font of components */
.product-text-container h1 {
    /* color: #333; */
    color:#121212;
    /* font-size: 19px; */
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.product-text-container p {
    /* color: rgb(102, 102, 102); */
    /* color:#333333; */
    /* font-size: 18px; */
    color:#121212;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 8px
}

.product-text-container .blue-button {
    padding: 8px 16px;
    border-radius: 5px;
    /* font-size: 15px; */
    font-size: 11px;
    cursor: pointer;
}

/* PROMOTION SECTION */

.promotion-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    margin-top: 110px;
    box-shadow: 0 10px 40px rgba(176, 176, 176, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.promo-image-container {
    width: calc(570px - 100px);
    padding: 0 50px;
    height: 100%;
    /* background-color: rgb(231, 238, 252); */
 background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    place-items: center
}

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

.promo-image-container img:hover {
    animation: shake 0.7s linear infinite;
}

.promo-text-container {
    /* background-color: white; */
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: left;
    padding: 0 80px;
    flex: 1;
    align-items: start
}

.promo-heading {
    display: flex;
    flex-direction: row;
    margin-bottom: 7px;
}

.promo-heading h1 {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    font-weight: 500;
    font-size: 25px
}

.promo-text-container h2 {
    /* color: rgb(64, 64, 64); */
    color:#121212;
    font-weight: 600;
    font-size: 37px;
    margin-top: 0;
    -webkit-font-smoothing: antialiased
}

.promo-text-container p {
    width: 100%;
    /* color: rgb(110, 110, 110); */
    color:#121212;
    font-size: 16px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    margin: 10px 0;
}

.promo-text-container .blue-button {
    margin-top: 12px;
    padding: 15px 35px;
    border-radius: 3px;
    font-size: 17px;
}

/* FOOTER */

footer {
    /* background-color: #d9e5f4; */
    background-color:#0099FF ;
    text-align: center;
    padding: 30px;
    /* color: rgb(64, 64, 64); */
    color:#121212;
    margin-top: 90px;
    overflow: hidden
}

#footer-top {
    padding: 20px;
    width: 60%;
    margin: auto;
}

#footer-socials-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px
}

.footer-social {
    display: flex;
    flex-direction: row;
    place-items: center
}

.footer-social span, .footer-social a {
    font-size: 16px;
    margin-left: 20px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased
}

.footer-social a {
    text-decoration: none;
    /* color: rgb(64, 64, 64) */
    color:#121212;
}

#footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    /* border-top: 1px solid rgb(169, 169, 169); */
    border-top: 1px solid #121212; 
    padding-top: 30px;
    margin-top: 20px;
}

#footer-bottom ul {
    list-style: none;
    display: flex;
    flex-direction: row
}

#footer-bottom li:not(:last-child) {
    margin-right: 20px
}

#footer-bottom a {
    text-decoration: none;
    /* color: rgb(64, 64, 64); */
    color:#121212;
    transition: 0.3s ease-in-out
}

#footer-bottom a:hover {
    /* color: rgb(65, 105, 255); */
    color:#FFFFFF;
}

#footer-top img {
    width: 220px;
    height: 110px
}

.footer-social svg {
    width: 40px;
    height: 40px
}

@media (max-width: 500px) {
    #navbar-links, #navbar-tools {
        display: none
    }

    #menu-bar {
        display: flex
    }

    #navbar-logo img {
        width: 100px;
        height: 50px;
    }

    #product-page-body {
        padding: 0
    }

    #product-top-container {
        padding-top: 0;
        padding-bottom: 15px;
    }

    #product-top-wrapper {
        padding: 35px;
        padding-top: 108px;
        flex-direction: column;
        height: auto;
    }

    #product-top-text-section {
        display: flex;
        flex-direction: column;
        text-align: center;
        place-items: center;
        width: auto;
        margin-bottom: 30px;
    }

    #product-top-text-section h1 {
        font-size: 19px;
    }

    #product-top-text-section h2 {
        font-size: 36px;
        margin-top: 10px
    }

    #product-top-text-section p {
        font-size: 15px;
        margin-top: 20px;
    }

    #product-top-text-section button {
        padding: 14px 38px;
        border-radius: 3px;
        font-size: 15px
    }

    #product-top-image-section {
        width: 280px;
        height: 280px;
        margin: 20px 0;
    }

    /* PRODUCT CATEGORY */

    #product-category-container {
        margin-top: 10px;
        margin-bottom: 20px;
        padding: 20px;
    }

    #product-category-text {
        margin-bottom: 30px;
    }

    .blue-line {
        height: 25px;
        width: 10px;
        margin-right: 10px;
    }

    .section-category-text {
        font-size: 17px;
    }

    .product-category {
        width: 48%;
        height: 65px
    }

    .product-category-image-section {
        width: 40px;
        height: 100%;
        padding: 0 10px
    }

    .product-category-image-section img {
        max-width: 90%;
        max-height: 90%
    }

    .product-category-desc-section {
        padding-left: 14px;
        text-align: left
    }

    .product-category-desc-section .product-category-type,
    .product-category-desc-section .product-category-number {
        font-size: 12px
    }

    /* PRODUCT SECTION */

    .product-section {
        margin-top: 0;
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .product-section-top-container {
        margin-bottom: 40px
    }

    .section-category-type {
        margin-bottom: 7px;
    }

    .section-category-container h1 {
        font-size: 22px;
        margin-bottom: 0;
    }

    .slideshow-button {
        width: 45px;
        height: 45px
    }

    .slideshow-button svg {
        width: 25px;
        height: 25px;
    }

    .product-cards-container ul {
        width: 100%;
        flex-wrap: nowrap
    }

    :root {
        --product-card-width: 100%;
        --product-card-height: 270px;
    }

    .product-image-container {
        height: 108px;
    }

    .product-text-container h1 {
        font-size: 14px;
        text-wrap: nowrap;
        text-overflow: ellipsis;
        overflow: hidden
    }

    /* this is for products usage font   1*/
    .product-text-container p {
        font-size: 8px
    }
    /* this is for products usage font */

    /* this is for products getquote font   2*/
    .product-text-container .blue-button {
        padding: 7px 8px;
        border-radius: 3px;
        font-size: 8px;
        text-wrap: nowrap
    }


/* this is for products getquote font   2*/

    /* PROMOTION SECTION */

    .promotion-section {
        flex-direction: column;
        width: calc(100% - 60px);
        margin: 90px 30px;
        height: auto;
    }

    .promo-image-container {
        width: calc(100% - 60px);
        padding: 70px 30px
    }

    .promo-text-container {
        padding: 40px 30px;
        text-align: center;
        place-items: center
    }

    .promo-heading {
        margin-bottom: 15px;
        place-items: center;
    }

    .promo-heading h1 {
        font-size: 20px
    }

    .promo-text-container h2 {
        font-size: 25px
    }

    .promo-text-container p {
        font-size: 15px;
        margin: 15px 0;
    }

    /* FOOTER */

    footer {
        margin-top: 40px
    }

    #footer-top {
        width: calc(100% - 40px);
        display: flex;
        flex-direction: column;
        place-items: center;
    }

    #footer-top img {
        width: 160px;
        height: 80px;
    }

    #footer-socials-wrapper {
        padding: 10px 0;
        margin-top: 20px;
        width: 38%
    }

    .footer-social svg {
        width: 30px;
        height: 30px
    }

    .footer-social span, .footer-social a {
        display: none
    }

    #footer-bottom {
        flex-direction: column;
        place-items: center;
        border: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    #footer-bottom ul {
        justify-content: center;
        width: 90%;
        margin-bottom: 20px;
        margin-top: 10px
    }

    #footer-bottom a, #footer-bottom p {
        font-size: 15px;
    }

    #footer-bottom p {
        border-top: 1px solid rgb(169, 169, 169);
        margin-top: 10px;
        padding-top: 30px;
        width: 100%;
    }
}

@media (max-width: 430px) {
    .product-category-image-section img {
        max-width: 88%;
        max-height: 88%
    }
}

@media (max-width: 400px) {
    .product-category {
        width: 100%;
        height: 75px
    }

    .product-category-image-section {
        width: 70px;
    }

    .product-category-image-section img {
        max-width: 76%;
        max-height: 76;
    }

    .product-category-desc-section {
        padding-left: 16px;
    }

    .promotion-section {
        width: calc(100% - 40px);
        margin: 90px 20px
    }
}

@media (max-width: 360px) {
    .product-category {
        height: 70px
    }

    .slideshow-buttons-container {
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
    }

    .slideshow-buttons-container.top {
        display: none
    }
    
    .slideshow-buttons-container.bottom {
        display: flex
    }

    .slideshow-button {
        width: 100px;
        border-radius: 20px;
    }
}



/* march 2 */


/* Popup Background (Hidden by Default) */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Popup Box */
.popup-content {
    /* background: white; */
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: 250px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.popup-content button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    background: #007bff;
    color:#FFFFFF;
    cursor: pointer;
    border-radius: 5px;
}

.popup-content button:hover {
    background: #0056b3;
}

/* march 2 */





/* march 23 */
/* Style only the Login/Sign Up link */
li a[href="login.html"] {
    display: inline-block;  /* Makes it look like a button */
    background-color: #ADD8E6;  /* Light blue background */
    color: #000;  /* Black text */
    padding: 10px 15px;  /* Padding for better button look */
    border-radius: 5px;  /* Rounded corners */
    text-decoration: none;  /* Remove underline */
    font-weight: bold;  /* Bold text */
    transition: background 0.3s ease;  /* Smooth hover effect */
  }
  
  /* Hover effect */
  li a[href="login.html"]:hover {
    /* background-color: #87CEEB; */
    background-color: #0099FF;
    color: #FFFFFF;  /* White text on hover */
  }
  
  
  /* march 23 */



 /* april 20 2025 */
 .phone-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    font-size: 16px;  /* Ensures readability */
    font-weight: bold; /* Makes the number more visible */
    color:#121212;      /* Ensures it is not hidden */
}

/* Ensure number is always visible in mobile view */
@media (max-width: 600px) {
    .phone-section {
        flex-direction: column; /* Stack icon and numbers */
        align-items: center;
        text-align: center;
    }

    .phone-numbers {
        font-size: 18px; /* Bigger font for better visibility */
    }
}

/*  */
  /* Hide the search button by default (desktop) */
  .mobile-search-button {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Show only on mobile (max-width: 767px) */
@media (max-width: 767px) {
    .mobile-search-button {
        display: block;
        width: 40px;
        height: 40px;
        position: fixed; /* Sticks to screen */
        top: 10px;
        right: 10px;
        z-index: 1000; /* Ensures it stays on top */
    }
}


/* works */
/* april 20 hamberger right , serach left */
 /* Show only on mobile phones (max-width: 767px) */
 @media (max-width: 767px) {
    .mobile-search-icon {
        display: block !important;
    }
}
/* april 20 hamberger right , serach left */





/*live chat in indexpage */
.help-container {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
}

.help-inner-container {
    max-width: 1200px;
    /* margin: auto; */
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Support Section */
.help-container .support-section {
    margin-bottom: 3rem;
}

.help-container .support-section h2,
.help-container .testimonials-section h2 {
    color: #0088CC;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.help-container .support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.help-container .support-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #0088CC;
    border-radius: 6px;
    transition: 0.3s;
}

.help-container .support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.help-container .support-card i {
    color:#0088CC;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.help-container .support-card h3 {
    color: #0088CC;
}

.help-container .support-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem 0;
}

.help-container .support-card a {
    color: #0088CC;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.help-container .support-card a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.help-container .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.help-container .testimonial-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    position: relative;
}

.help-container .testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 86, 179, 0.1);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
}

.help-container .testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1rem;
}

.help-container .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.help-container .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.help-container .author-info h4 {
    font-size: 1rem;
    color: #0088CC;
}

.help-container .author-info p {
    font-size: 0.8rem;
    color: #6c757d;
}

.help-container .rating {
    color: #ff8c00;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .help-container .support-options, 
    .help-container .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/*  */
 /* Animations */
 @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-us-container {
    padding: 2rem;
    background: linear-gradient(135deg, #A0A0A0, #121212);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1s forwards;
}

.contact-options a,
.contact-methods a {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-options a:hover,
.contact-methods a:hover {
    color: #111010;
}

.contact-options {
    margin-top: 20px;
    font-size: 1rem;
    color:#FFFFFF;
}

.contact-methods {
    margin-top: 20px;
    font-size: 1rem;
    color:#FFFFFF;
}

.contact-methods a {
    font-weight: normal;
}



/*  */

