body {
    background: #181a20;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.hero-section {
    background: linear-gradient(120deg, #23262f 0%, #2b2e3a 100%);
    color: #fff;
    border-radius: 0 0 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.5s;
    padding-bottom: 3.5rem; /* Increased bottom padding */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), #00e39633 0%, #23262f 80%);
    z-index: 0;
    transition: background 0.3s;
    pointer-events: none;
}

.hero-section .container, .hero-section * {
    position: relative;
    z-index: 1;
}

.product-card {
    background: #23262f;
    color: #e0e0e0;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 100%;
    text-align: center;
}

/* Product title styling */
.product-card .card-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-weight: 600;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,255,180,0.10);
    transform: translateY(-4px) scale(1.02);
}

.product-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    background: #23262f; /* Matches the website's background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Optional: Adds spacing around the image */
    margin: 0 auto; /* Centers the image horizontally */
}

.card-img-top.product-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #23262f;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.product-gallery {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    justify-content: flex-start;
    min-height: 340px;
    padding: 1rem;
    background: #23262f;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Single product image styling */
.product-img-lg.single-image {
    display: block;
    margin: 0 auto;
    width: 370px;
    height: 370px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,227,150,0.08);
    background: #23262f;
    border: 2px solid #323544;
}

@media (max-width: 575px) {
    .product-img-lg.single-image {
        width: 90vw;
        max-width: 350px;
        height: auto;
        max-height: 50vw;
    }
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    min-width: 80px;
}

.product-thumb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 2px solid #323544;
    background: #23262f;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-thumb-img.active,
.product-thumb-img:hover {
    border-color: #00e396;
    box-shadow: 0 0 0 2px #00e396;
    transform: scale(1.07);
}

.product-img-lg {
    width: 370px;
    height: 370px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,227,150,0.08);
    background: #23262f;
    border: 2px solid #323544;
    display: block;
    margin: 0 auto;
}

.product-price {
    font-size: 1.1rem;
    color: #00e396;
    font-weight: 600;
}

.form-control, .form-select {
    background: #23262f;
    color: #e0e0e0;
    border: 1px solid #323544;
}

.form-control:focus, .form-select:focus {
    background: #23262f;
    color: #fff;
    border-color: #00e396;
    box-shadow: 0 0 0 0.2rem rgba(0,227,150,0.15);
}

.btn-primary {
    background: #00e396;
    border: none;
    color: #181a20;
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:focus {
    background: #00b86b;
    color: #fff;
}

.btn-outline-dark, .btn-outline-primary {
    border-color: #323544;
    color: #e0e0e0;
    background: transparent;
}

.btn-outline-dark.active, .btn-outline-dark:hover, .btn-outline-dark:focus {
    background: #23262f;
    color: #00e396;
    border-color: #00e396;
}

.btn-outline-primary.active, .btn-outline-primary:hover, .btn-outline-primary:focus {
    background: #00e396;
    color: #181a20;
    border-color: #00e396;
}

.badge.bg-success, .badge.bg-primary, .badge.bg-info {
    background: #23262f !important;
    color: #00e396 !important;
    border: 1px solid #00e396;
}

.alert-primary {
    background: #23262f;
    color: #00e396;
    border-color: #00e396;
}

.alert-success {
    background: #1e2329;
    color: #00e396;
    border-color: #00e396;
}

.list-group-item {
    background: #23262f;
    color: #e0e0e0;
    border: 1px solid #323544;
}

.footer {
    background: #23262f;
    color: #e0e0e0;
    border-radius: 2rem 2rem 0 0;
}

.footer h5, .footer h6 {
    color: #00e396;
    font-weight: 600;
}

.footer p {
    line-height: 1.7;
}

.footer a {
    color: #e0e0e0;
    transition: all 0.2s ease;
}

.footer a:hover {
    color: #00e396;
    text-decoration: none !important;
    transform: translateX(3px);
}

.footer .social-links a {
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.footer .social-links a:hover {
    color: #00e396;
    transform: translateY(-3px);
}

.footer .social-links a:hover i.fa-facebook {
    color: #1877f2;
}

.footer .social-links a:hover i.fa-twitter {
    color: #1da1f2;
}

.footer .social-links a:hover i.fa-instagram {
    color: #e1306c;
}

.footer .social-links a:hover i.fa-telegram {
    color: #0088cc;
}

.footer hr {
    opacity: 0.1;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer ul {
        margin-bottom: 2rem;
    }
}

.pagination .page-link {
    background: #23262f;
    color: #e0e0e0;
    border: 1px solid #323544;
}

.pagination .page-item.active .page-link {
    background: #00e396;
    color: #181a20;
    border-color: #00e396;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,227,150,0.15);
}

.alert-warning {
    background: #2b2e3a;
    color: #ffb300;
    border-color: #ffb300;
}

.reviews-marquee {
    animation: reviews-marquee-scroll 300s linear infinite;
    will-change: transform;
}

@keyframes reviews-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.overflow-auto::-webkit-scrollbar, .overflow-hidden::-webkit-scrollbar { display: none; }
.overflow-auto, .overflow-hidden { -ms-overflow-style: none; scrollbar-width: none; }

/* How to Claim section - balanced size for readability and fit */
.how-to-claim-section {
    background: #23262f;
    border-radius: 1.5rem;
    padding: 1.5rem 1rem 1.5rem 1rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}

.how-to-claim-section h2 {
    color: #00e396;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    text-align: center;
}

.how-to-claim-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.3rem;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
}

.how-to-claim-step {
    background: #23262f;
    border-radius: 0.9rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 1rem 0.7rem 1rem 0.7rem;
    min-width: 180px;
    max-width: 180px;
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #e0e0e0;
    font-size: 0.97rem;
    position: relative;
    background-clip: padding-box;
    border: 1px solid #323544;
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.how-to-claim-step .how-to-claim-icon {
    font-size: 1.3rem;
    color: #00e396;
    margin-bottom: 0.35rem;
    align-self: center;
}

.how-to-claim-step b {
    font-size: 1.01rem;
    color: #00e396;
    display: block;
    margin-bottom: 0.13rem;
}

.how-to-claim-step .small {
    font-size: 0.87rem;
    color: #bbb;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.how-to-claim-arrow {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #00e396;
    margin: 0 0.13rem;
    flex-shrink: 0;
    height: 100%;
    align-self: center;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .container, .about-section, .product-card, .product-hero {
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        border-radius: 0 0 1.2rem 1.2rem;
        background: #23262f !important;
        color: #fff !important;
        box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    }

    .navbar .container {
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .navbar-brand {
        font-size: 1.15rem !important;
        padding-left: 0.2rem;
        color: #00e396 !important;
    }
    
    /* Remove conflicting menu styles */
    .product-gallery {
        flex-direction: column;
        align-items: center;
        gap: 1vw;
        min-height: unset;
        width: 100%;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .product-thumbs {
        flex-direction: row;
        min-width: 0;
        gap: 1vw;
        margin-bottom: 1vw;
    }

    .product-img-lg {
        width: 90vw;
        max-width: 350px;
        height: auto;
        max-height: 50vw;
        min-width: 0;
        min-height: 0;
        display: block;
        margin: 0 auto;
        border-radius: 1rem;
    }

    .product-card, .product-hero {
        padding: 1rem !important;
        overflow-x: hidden;
        border-radius: 1rem;
        margin-bottom: 2vw;
    }

    .product-title {
        font-size: 1.15rem;
        text-align: center;
        word-break: break-word;
        white-space: normal;
        margin-bottom: 1vw;
    }

    .product-desc {
        font-size: 1rem;
        text-align: center;
        word-break: break-word;
        white-space: normal;
        margin-bottom: 2vw;
    }

    .product-price {
        font-size: 1.1rem;
        text-align: center;
        color: #00e396;
        font-weight: 600;
        margin-bottom: 2vw;
    }

    .product-card .product-price {
        margin-top: 1rem;
    }

    .badge {
        font-size: 0.95rem !important;
        padding: 0.4em 0.7em !important;
        word-break: break-word;
        white-space: normal;
        display: inline-block;
        margin-bottom: 0.2em;
    }

    .btn, .btn-lg, .btn-primary, .btn-outline-primary, .btn-outline-dark {
        font-size: 1rem !important;
        padding: 0.7rem 1.2rem !important;
        border-radius: 0.7rem;
    }

    .form-control, .form-select {
        font-size: 1rem !important;
        padding: 0.6rem 0.9rem !important;
        border-radius: 0.5rem;
    }

    .form-control::placeholder {
        color: #181a20 !important;
        opacity: 1 !important;
        font-size: 1.2rem;
        font-family: inherit;
        text-align: left;
    }

    .form-control {
        background: #fff !important;
        color: #181a20 !important;
        border: 1.5px solid #e0e0e0 !important;
    }

    .how-to-claim-section {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        border-radius: 1.2rem;
    }

    .how-to-claim-steps {
        gap: 2vw;
    }

    .how-to-claim-step {
        min-width: 110px;
        max-width: 140px;
        flex-basis: 120px;
        font-size: 0.9rem;
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        align-items: center;
        text-align: center;
        border-radius: 0.8rem;
    }

    .how-to-claim-arrow {
        font-size: 1rem;
        margin: 0 0.1rem;
    }

    .about-card, .about-story {
        padding: 1rem 0.3rem !important;
        max-width: 100% !important;
        border-radius: 1rem;
    }

    .about-card h2 {
        font-size: 1.05rem;
    }

    .about-section .social-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin: 1rem 0;
    }

    .about-section .social-links a {
        text-decoration: none;
        transition: transform 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        background: #23262f;
    }

    .about-section .social-links a i {
        font-size: 3rem;
    }

    .about-section .social-links a:hover {
        transform: translateY(-5px);
    }

    .about-section .social-links .fa-facebook {
        color: #1877f2 !important;
    }

    .about-section .social-links .fa-twitter {
        color: #1da1f2 !important;
    }

    .about-section .social-links .fa-instagram {
        color: #e1306c !important;
    }

    .about-section .social-links .fa-telegram {
        color: #0088cc !important;
    }

    @media (max-width: 575px) {
        .about-section .social-links {
            gap: 2.5rem;
        }
        .about-section .social-links a {
            width: 70px;
            height: 70px;
        }
        .about-section .social-links a i {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 575px) {
        .about-section .social-links {
            gap: 2rem;
        }
        .about-section .social-links a i {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 575px) {
        .about-social-link {
            width: 40px;
            height: 40px;
            padding: 10px;
        }
        
        .about-social-link img {
            width: 22px;
            height: 22px;
        }
    }

    .footer {
        padding: 1.2rem 0.5rem !important;
        font-size: 0.97rem;
        border-radius: 1.2rem 1.2rem 0 0;
    }

    .overflow-auto, .overflow-hidden {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .overflow-auto::-webkit-scrollbar, .overflow-hidden::-webkit-scrollbar {
        display: none;
    }

    .btn-group[role="group"] {
        flex-wrap: wrap !important;
        display: flex !important;
        justify-content: flex-start;
        width: 100%;
        gap: 2vw;
    }

    .btn-group[role="group"] .btn {
        min-width: 90px;
        flex: 1 1 40%;
        margin-bottom: 2vw;
        white-space: normal;
        word-break: break-word;
    }
}

/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default 2 columns even on smallest screens */
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem;
    margin: 0 auto;
}

/* Mobile styles */
@media (max-width: 575px) {
    .product-grid {
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .product-card {
        padding: 0.75rem;
    }
    
    .card-img-top.product-img {
        height: 180px;
        margin-bottom: 0.75rem;
    }

    .product-card .card-body {
        padding: 0;
    }

    .product-card .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }

    .product-card .product-price {
        margin: 0;
        font-size: 1.2rem;
    }

    .product-card .btn {
        width: 100%;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
    }
}

.product-description {
    font-size: 1.08rem;
    color: #e0e0e0;
    /* text-align: center; */ /* Removed to allow Quill alignment */
    word-break: break-word;
}

/* Social share buttons styling */
.social-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-share-buttons .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.social-share-buttons .btn i {
    font-size: 1rem;
    margin: 0;
}

/* Custom colors for social buttons */
.social-share-buttons .btn-outline-primary:hover {
    background-color: #1877f2; /* Facebook blue */
    border-color: #1877f2;
}

.social-share-buttons .btn-outline-info:hover {
    background-color: #1da1f2; /* Twitter blue */
    border-color: #1da1f2;
}

.social-share-buttons .btn-outline-danger:hover {
    background-color: #e60023; /* Pinterest red */
    border-color: #e60023;
}

.social-share-buttons .btn-outline-success:hover {
    background-color: #25d366; /* WhatsApp green */
    border-color: #25d366;
}

@media (max-width: 575px) {
    .social-share-buttons {
        justify-content: stretch;
    }
    .social-share-buttons .btn {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
    }
}

/* Product tabs styling */
.product-tabs {
    margin-bottom: 2rem;
}

.product-tabs .btn-group {
    width: 100%;
    max-width: 300px;
}

.product-tabs .btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-color: #00e396;
    color: #00e396;
}

.product-tabs .btn.active {
    background-color: #00e396;
    color: #23262f;
    border-color: #00e396;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Review styles */
.review-item {
    background: #23262f;
    border-color: #323544 !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,227,150,0.08);
}

.review-item .rating {
    font-size: 0.9rem;
}

.review-item .text-warning {
    color: #ffc107 !important;
}

.review-item .text-secondary {
    color: #323544 !important;
}

.product-info-tabs .card {
    transition: box-shadow 0.3s;
}

.product-info-tabs .card:hover {
    box-shadow: 0 8px 24px rgba(0,227,150,0.12) !important;
}

.product-info-tabs .card-body {
    max-height: 500px;
    overflow-y: auto;
}

.product-info-tabs .card-body::-webkit-scrollbar {
    width: 6px;
}

.product-info-tabs .card-body::-webkit-scrollbar-track {
    background: #23262f;
}

.product-info-tabs .card-body::-webkit-scrollbar-thumb {
    background: #323544;
    border-radius: 3px;
}

.product-info-tabs .card-body::-webkit-scrollbar-thumb:hover {
    background: #00e396;
}

.review-item {
    background: rgba(35, 38, 47, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid #323544 !important;
}

.product-rating .rating {
    font-size: 1.1rem;
}

.product-rating .text-warning,
.rating-link .text-warning {
    color: #00e396 !important;
}

.product-rating .text-secondary,
.rating-link .text-secondary {
    color: #323544 !important;
}

.rating-link {
    text-decoration: none;
    transition: all 0.2s;
}

.rating-link:hover {
    opacity: 0.8;
}

.rating-link .rating {
    font-size: 0.95rem;
}

.rating-link span {
    font-size: 0.9rem;
}

.product-rating span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .product-rating {
        justify-content: center;
        text-align: center;
    }
    .product-rating .rating {
        font-size: 1rem;
    }
}

.product-reviews-link {
    text-decoration: none;
    transition: background 0.18s, transform 0.18s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-reviews-link:hover {
    background: rgba(0,227,150,0.1);
    transform: translateY(-2px);
}

.product-reviews-link .rating {
    font-size: 1.1rem;
}

.product-reviews-link .fas.fa-star.text-warning {
    color: #ffc107 !important;
}

.product-reviews-link {
    display: flex;
    align-items: center; /* Align stars and average rating */
    gap: 0.25rem; /* Reduce spacing between stars and average rating */
}

.product-reviews-link span {
    font-size: 0.9rem; /* Ensure average rating text is visually balanced */
    background: none; /* Remove box styling */
    border: none; /* Remove border */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    box-shadow: none; /* Remove box shadow */
}

@media (max-width: 768px) {
    .product-reviews-link {
        display: block;
        text-align: center;
    }
    .product-reviews-link .d-flex {
        justify-content: center;
    }
}

/* Iframe and Widget Container Styles */
#widgetHolder {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 420px; /* Increased to show all offers */
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #23262f;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.24);
}

#offerContainer {
    position: relative;
    min-height: 425px;  /* Increased to match widget height plus padding */
}

/* Scale container for iframe */
#widgetHolder > div {
    transform: scale(0.85);
    transform-origin: top center;
}

/* Iframe styling */
#widgetHolder iframe {
    border: none;
    margin-top: 5px;
    opacity: 1;
    width: 100%;
    height: 430px; /* Increased to show full content */
}

.product-info {
    background: #23262f;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.product-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-align: left;
}

.product-hero {
    margin-bottom: 2rem;
}

.product-hero .row {
    align-items: flex-start;
    gap: 0;
    margin: 0 -0.5rem;
}

.product-hero .row > [class*="col-"] {
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .product-info {
        margin-top: 0.5rem;
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .d-flex {
        justify-content: flex-start;
    }
    
    .social-share-buttons {
        justify-content: flex-start;
    }
    
    .badge {
        margin-right: 0.5rem;
    }
}

.product-meta {
    padding: 1rem;
    background: rgba(35, 38, 47, 0.5);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.category-tag {
    margin-top: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating .fas.fa-star {
    font-size: 1.1rem;
}

.product-meta .product-reviews-link {
    text-decoration: none;
    transition: opacity 0.2s;
}

.product-meta .product-reviews-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .product-meta {
        text-align: center;
    }
    
    .product-meta .d-flex {
        justify-content: center;
    }
    
    .category-tag {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }
}

.menu-social-links {
    display: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(33, 33, 33, 0.98) !important;
        padding: 0;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        display: flex !important;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        overflow-y: auto;
        border-top: none !important;
        box-shadow: none !important;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .navbar-nav {
        width: 100%;
        padding: 80px 2rem 2rem 2rem;
        margin: 0;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        background: transparent !important;
    }

    .menu-social-links {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 1rem 2rem;
        margin-top: auto;
        width: 100%;
    }

    .menu-social-link {
        font-size: 1.3rem;
        opacity: 0.95;
        transition: all 0.2s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-social-link:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    .menu-social-link i.fa-facebook {
        color: #1877f2;
    }

    .menu-social-link i.fa-twitter {
        color: #1da1f2;
    }

    .menu-social-link i.fa-instagram {
        color: #e1306c;
    }

    .menu-social-link i.fa-telegram {
        color: #0088cc;
    }

    .menu-social-link i {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .navbar-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler::before {
        content: "\f0c9";
        font-family: "Font Awesome 5 Free", "FontAwesome";
        font-weight: 200;
        font-size: 22px;
        color: rgba(255, 255, 255, 0.95);
        display: block;
        text-align: center;
        line-height: 1;
    }

    .navbar-toggler[aria-expanded="true"]::before {
        content: "\f00d";
        font-weight: 200;
    }

     .navbar-collapse .nav-link {
        color: #ecf0f1 !important; /* Light grey text for mobile menu links */
     }
     .navbar-collapse .nav-link:hover {
         color: #3498db !important; /* Theme blue on hover for mobile */
     }
     .navbar-collapse .menu-social-link {
         color: #ecf0f1; /* Light grey icons for mobile */
     }
     .navbar-collapse .menu-social-link:hover {
         color: #3498db; /* Theme blue on hover for mobile */
     }

    /* Ensure main navbar background is not visible when mobile menu is open */
    .navbar.menu-open {
        background: transparent !important;
    }
}

/* Hide body scrollbar when menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Button styles */
.btn-getnow {
    font-size: 1.05rem;
    padding: 0.55rem 1.4rem;
    border-radius: 0.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,227,150,0.10);
    background: #00e396;
    color: #181a20;
    border: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    display: inline-block;
}

.btn-getnow:hover, .btn-getnow:focus {
    background: #00b86b;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,227,150,0.18);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 35px;
    }
}

/* Contact Page Styles */
.hover-text-primary:hover { color: #1877f2 !important; }
.hover-text-info:hover { color: #1da1f2 !important; }
.hover-text-danger:hover { color: #e1306c !important; }

.contact-info .text-white {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-info i.fa-lg {
    font-size: 1.2rem;
    margin-top: 4px;
}

.about-section .social-links a {
    color: inherit !important; /* Prevents link color from overriding icon color */
    font-size: unset !important; /* Prevents link font-size from affecting icons */
}

.about-section .social-links a i {
    font-size: 3rem !important; /* Ensures icons are large */
    vertical-align: middle;
}

.about-section .social-links a .fa-facebook { color: #1877f2 !important; }
.about-section .social-links a .fa-twitter { color: #1da1f2 !important; }
.about-section .social-links a .fa-instagram { color: #e1306c !important; }
.about-section .social-links a .fa-telegram { color: #0088cc !important; }

@media (max-width: 575px) {
    .about-section .social-links a i {
        font-size: 2.2rem !important;
    }
}

.about-social-links {
    display: flex !important;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.0rem;
    padding: 1rem 0;
}

.about-social-links .menu-social-link {
    color: inherit !important;
}
.about-social-links .menu-social-link i {
    font-size: 2rem !important;
}

@media (max-width: 575px) {
    .about-social-links {
        margin-bottom: 0.5rem !important;
        padding-bottom: 0 !important;
    }
    .about-card {
        gap: 1rem !important;
    }
}

.about-social-links .menu-social-link i.fa-facebook { color: #1877f2 !important; }
.about-social-links .menu-social-link i.fa-twitter { color: #1da1f2 !important; }
.about-social-links .menu-social-link i.fa-instagram { color: #e1306c !important; }
.about-social-links .menu-social-link i.fa-telegram { color: #0088cc !important; }

/* Modern Header Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(33, 33, 33, 0.98) !important; /* Dark grey background */
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #ecf0f1 !important; /* Light grey text */
    padding: 0.5rem 0.5rem !important; /* Reduced horizontal padding */
    margin: 0 0.1rem; /* Reduced horizontal margin */
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #3498db !important; /* Theme blue on hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0; /* Starts with 0 width */
    height: 2px;
    bottom: 0;
    left: 50%; /* Align to the center initially */
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%); /* Center the underline */
}

.nav-link:hover::after {
    width: calc(100% - 1rem); /* Adjust width to match new padding */
}

.menu-social-links {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    gap: 0.8rem;
}

.menu-social-link {
    color: #ecf0f1; /* Light grey icons */
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(236, 240, 241, 0.1); /* Light grey transparent background */
}

.menu-social-link:hover {
    color: #3498db; /* Theme blue on hover */
    transform: translateY(-2px);
    background: rgba(52, 152, 219, 0.2);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .menu-social-links {
        margin: 1rem 0;
        justify-content: center;
    }
    
    .navbar-collapse {
        background: #333; /* Dark grey background for mobile menu */
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 1rem;
    }
     .navbar-collapse .nav-link {
        color: #ecf0f1 !important; /* Light grey text for mobile menu links */
     }
     .navbar-collapse .nav-link:hover {
         color: #3498db !important; /* Theme blue on hover for mobile */
     }
     .navbar-collapse .menu-social-link {
         color: #ecf0f1; /* Light grey icons for mobile */
     }
     .navbar-collapse .menu-social-link:hover {
         color: #3498db; /* Theme blue on hover for mobile */
     }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler::before {
        content: "\f0c9";
        font-family: "Font Awesome 5 Free", "FontAwesome";
        font-weight: 200;
        font-size: 22px;
        color: rgba(255, 255, 255, 0.95);
        display: block;
        text-align: center;
        line-height: 1;
    }

    .navbar-toggler[aria-expanded="true"]::before {
        content: "\f00d";
        font-weight: 200;
    }
}

/* Remove the old hamburger icon styles */
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    display: none;
}

.hamburger-icon,
.navbar-toggler[aria-expanded="true"] .hamburger-icon,
.navbar.scrolled .hamburger-icon {
    background-color: #fff; /* White color for hamburger lines */
}

/* About Us Page Styles */
.about-us-section .product-card {
    background: #23262f;
    color: #e0e0e0;
    border-radius: 1rem;
}

.about-us-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00e396;
    margin-bottom: 0.5rem;
}

.about-us-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-subtitle .icon-color {
    color: #00e396;
}

.about-us-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00e396;
    box-shadow: 0 4px 20px rgba(0, 227, 150, 0.15);
    background: #181a20;
    margin-bottom: 1.5rem;
}

.about-us-list {
    padding-left: 0;
}

.about-values {
    padding-left: 0;
}

.about-card {
    margin-bottom: 2rem;
}

.about-us-address {
    font-style: normal;
    line-height: 1.8;
    color: #c0c0c0;
}

.about-us-address a {
    color: #00e396;
    text-decoration: none;
}

.about-us-address a:hover {
    text-decoration: underline;
}

.about-social-links .social-link {
    color: #c0c0c0;
    margin: 0 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.about-social-links .social-link:hover {
    color: #00e396;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .about-us-title {
        font-size: 2.2rem;
    }
    .about-us-subtitle {
        font-size: 1.5rem;
    }
}
