
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --gradient-start: #4cc9f0;
    --gradient-end: #4361ee;
    --text-color: #2b2d42;
    --light-bg: #f8f9fa;
    --card-hover-shadow: 0 10px 25px rgba(67, 97, 238, 0.15);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}


.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.2);
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px;
    margin-top: 10px;
}

.navbar-nav .dropdown-item {
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}


.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
    position: relative;
    z-index: 5;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background: #e5116c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.4);
}

.cta-button.secondary {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.cta-button.secondary:hover {
    background: #3051d3;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}


.product-images img.main-image {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 10px;
    background: white;
}

.product-images img.main-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}


.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}


.review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(247, 37, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}


footer {
    background: #2b2d42;
    color: white;
    padding: 70px 0 30px;
}

footer a {
    color: #a4c5f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}


.quick-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 5px;
    display: none;
}

@media (min-width: 992px) {
    .quick-nav {
        display: block;
    }
}

.quick-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-nav li {
    margin: 15px 0;
    text-align: center;
}

.quick-nav a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.quick-nav a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}


.pie-chart-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
}

.pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #4cc9f0 0% 25%,
        #f72585 25% 50%,
        #7209b7 50% 75%,
        #4361ee 75% 100%
    );
}

.pie-chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pie-chart-legend {
    margin-top: 20px;
}

.pie-chart-legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pie-chart-legend-color {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    border-radius: 4px;
}


.progress {
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.progress-bar {
    transition: width 1.5s ease;
}


.feature-box {
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-box:hover {
    border-top: 4px solid var(--accent-color);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}


.colored-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 80px 0;
    margin: 50px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.colored-section .section-title {
    color: white;
}

.colored-section .section-title:after {
    background: white;
}


footer h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom a {
    margin-left: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}


.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title:after {
    left: 50%;
    transform: translateX(-50%);
}


.gradient-card {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


.bg-purple {
    background-color: #7209b7 !important;
}


.specification-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.specification-table th, .specification-table td {
    padding: 15px 20px;
    text-align: left;
}

.specification-table th {
    background-color: var(--primary-color);
    font-weight: 600;
    color: white;
    width: 30%;
}

.specification-table tr:nth-child(even) {
    background-color: rgba(67, 97, 238, 0.05);
}

.specification-table tr:hover {
    background-color: rgba(67, 97, 238, 0.1);
}


.flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.flavor-item {
    text-align: center;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.flavor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.flavor-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}


.faq-item {
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-question {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}


.related-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.related-product-card img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.related-product-card:hover img {
    transform: scale(1.03);
}

.related-product-card .card-body {
    padding: 25px;
}

.related-product-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.related-product-card .price {
    color: var(--accent-color);
    font-weight: 700;
}


.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.card-header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px 20px;
}

.card-body {
    padding: 25px;
}


.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.promotion-box {
    background: linear-gradient(135deg, var(--accent-color), #ff9a9e);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    color: white;
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.2);
}

.promotion-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
}


.quantity-selector {
    display: flex;
    align-items: center;
    margin: 20px 0;
    background: rgba(67, 97, 238, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.quantity-selector input {
    width: 100px;
    height: 50px;
    text-align: center;
    margin: 0 15px;
    border: 2px solid rgba(67, 97, 238, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.quantity-selector input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.quantity-selector label {
    font-weight: 600;
    margin-right: 15px;
    color: var(--secondary-color);
}


.product-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 20px 0;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(247, 37, 133, 0.1);
    border-radius: 10px;
}


.bg-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

.bg-shape-1 {
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(76, 201, 240, 0.3), rgba(76, 201, 240, 0));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.bg-shape-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(247, 37, 133, 0.2), rgba(247, 37, 133, 0));
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}


.product-meta {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-meta p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-meta p strong {
    min-width: 120px;
    display: inline-block;
}

.product-meta .text-success {
    display: flex;
    align-items: center;
}

.product-meta .text-success:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
}


#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


.nav-tabs {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    color: var(--text-color);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 15px 25px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: rgba(67, 97, 238, 0.3);
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-color: var(--primary-color);
}


.rating {
    color: #ffc107;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}


.recommendation-card, .accessory-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.recommendation-card:hover, .accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top-color: var(--accent-color);
}

.recommendation-card h3, .accessory-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
}

.recommendation-card h3:after, .accessory-card h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
    border-radius: 2px;
}


.buy-now-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}

.buy-now-btn:hover {
    background: #e5116c;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(247, 37, 133, 0.3);
    color: white;
}

.add-to-cart-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    margin-right: 10px;
    text-decoration: none;
}

.add-to-cart-btn:hover {
    background: #3051d3;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(67, 97, 238, 0.3);
    color: white;
}


.product-showcase-image {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.product-showcase-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.product-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-showcase-image p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}


.flavor-options-section {
    margin-top: 40px;
}


.flavor-info-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
}


.flavor-options-section .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
}


.flavor-info-card ul li {
    margin-bottom: 5px;
}

.flavor-info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(67, 97, 238, 0.2);
}

.flavor-info-card p {
    margin-bottom: 15px;
}

.flavor-info-card ul {
    padding-left: 20px;
}

.flavor-info-card ul li {
    margin-bottom: 8px;
    position: relative;
}

.flavor-info-card ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.region-flavor strong {
    color: var(--secondary-color);
}


.quality-assurance {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-color);
}

.quality-assurance h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.quality-assurance img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.quality-assurance img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


.social-share {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.social-share span {
    margin-right: 15px;
    font-weight: 600;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #6c757d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: white;
}


.favorite-btn {
    background-color: transparent;
    border: none;
    color: #dc3545;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.2);
}

.favorite-count {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 5px;
}


.btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}


@media (max-width: 991.98px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-banner img {
        margin-bottom: 30px;
    }
    
    .feature-box {
        padding: 25px;
    }
    
    .feature-box i {
        font-size: 2.5rem;
    }
    
    .specification-table th, .specification-table td {
        padding: 12px 15px;
    }
    
    .related-product-card .btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .related-product-card .btn-group a, 
    .related-product-card .btn-group button {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .product-price {
        font-size: 1.5rem;
    }
    
    .quantity-selector {
        flex-wrap: wrap;
    }
    
    .quantity-selector label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .flavor-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}


.cta-section,.contact-section{
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 100px 0;
    margin: 70px 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 5;
}

.business-model-card .card-header h3 {
 
    color: #ffffff;
}
.emailcolor a{
    color: #ffffff;
}
.whatsappcolor a{
    color: #ffffff;
}