 .contact-header {
            background: #222341;
            padding: 8px 7px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f56e0b" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .contact-header h1 {
            font-size: 30px;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-style: italic;
        }
        
        .contact-header h1 span {
            color: #f56e0b;
        }
#hero-carousel {
    height: 70vh;
}

#hero-carousel .carousel-item {
    height: 70vh;
    background-size: cover;
    background-position: center center;
    position: relative;
    transition: opacity 1s ease-in-out;
}

/* Overlay */
#hero-carousel .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.55);
}

/* Caption Styling */
#hero-carousel .carousel-caption {
    bottom: 25%;
    z-index: 10;
}

#hero-carousel h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#hero-carousel p {
    font-size: 1.25rem;
    color: #f1f1f1;
    margin-top: 10px;
    max-width: 600px;
}

/* Button Styling */
#hero-carousel .btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

#hero-carousel .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Animations */
.animate-slide {
    animation: fadeInDown 1s ease both;
}

.animate-text {
    animation: fadeInUp 1.2s ease both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Center subtitle properly */
#hero-carousel .carousel-caption p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Underline below subtitle */
.carousel-sub-underline {
    width: 120px;
    height: 4px;
    background: #ffffff;
    margin: 12px auto 20px auto;
    border-radius: 5px;
    animation: underlineFade 1s ease forwards;
}

@keyframes underlineFade {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}


/* Responsive */
@media (max-width: 768px) {
    #hero-carousel h1 {
        font-size: 2rem;
    }

    #hero-carousel p {
        font-size: 1rem;
    }
}

/* Sticky Header Styles */
.sticky-header {
    transition: all 0.4s ease-in-out;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-header.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.4s ease-out;
}

/* Sticky Navbar Specific Styles */
.sticky-navbar.sticky-active {
    padding: 8px 0;
}

.sticky-navbar.sticky-active .navbar-brand img {
    height: 40px !important;
    /* Adjust logo size when sticky */
    transition: all 0.3s ease;
}

.sticky-navbar.sticky-active .nav-link {
    padding: 8px 15px !important;
    font-size: 14px;
}

.sticky-navbar.sticky-active .btn-warning {
    padding: 6px 15px !important;
    font-size: 13px;
}

/* Animation for smooth appearance */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Body padding to prevent content jump */
body.sticky-nav-active {
    padding-top: 80px;
    /* Adjust based on your navbar height */
}

/* Top bar hide on scroll */
.top-bar-con {
    transition: all 0.3s ease;
}

.top-bar-con.hide-top-bar {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Ensure proper z-index stacking */
.home3_banner_outer {
    position: relative;
    z-index: 1;
}

.sticky-header {
    z-index: 9998;
}

.sticky-header.sticky-active {
    z-index: 9999;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .sticky-navbar.sticky-active {
        padding: 10px 0;
    }

    body.sticky-nav-active {
        padding-top: 70px;
    }
}

@media (max-width: 767.98px) {
    .sticky-navbar.sticky-active .navbar-brand img {
        height: 35px !important;
    }

    body.sticky-nav-active {
        padding-top: 65px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}


/* Categories Section Styling */
.categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #1a4f8c, #0d3a6b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 79, 140, 0.15);
    border-color: #1a4f8c;
}

/* Category Image */
.category-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-stats {
    color: white;
    font-size: 0.9rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Category Badges */
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge:not(.organic):not(.handmade) {
    background: linear-gradient(45deg, #1a4f8c, #0d3a6b);
}

.category-badge.organic {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.category-badge.handmade {
    background: linear-gradient(45deg, #ffc107, #ffb300);
}

/* Category Content */
.category-content {
    padding: 25px;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a4f8c;
    margin-bottom: 10px;
}

.category-desc {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Category Features */
.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Category Link */
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a4f8c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-link:hover {
    color: #0d3a6b;
    gap: 12px;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* View All Card */
.view-all-card {
    background: linear-gradient(135deg, #1a4f8c, #0d3a6b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.view-all-card:hover {
    background: linear-gradient(135deg, #0d3a6b, #1a4f8c);
    transform: translateY(-10px);
}

.view-all-content {
    padding: 40px 25px;
}

.view-all-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.view-all-card .category-title {
    color: white;
    margin-bottom: 10px;
}

.view-all-card .category-desc {
    color: rgba(255, 255, 255, 0.8);
}

.view-all-link {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 15px;
}

.view-all-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* CTA Section */
.categories-cta {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {


    .category-content {
        padding: 20px;
    }

    .category-image {
        height: 180px;
    }

    .categories-cta .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .category-features {
        justify-content: center;
    }

    .view-all-content {
        padding: 30px 20px;
    }
}

.about-section {
    background: #f8f9fc;
    position: relative;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
}

.about-main-img {
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-main-img:hover {
    transform: scale(1.05);
}

.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0052cc, #00b4d8);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}




.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-primary {
    background: #f47011;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f47011;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Responsive */
@media (max-width: 767px) {
    .about-content {
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }
}

.why-choose-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(52, 73, 94, 0.03) 100%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.section-subtitle {
    color: #d35400;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    font-size: 0.9rem;
}




.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d35400, #e67e22);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    background: white;
    color: #d35400;
    transform: scale(1.1);
}

.feature-card:hover h4,
.feature-card:hover p,
.feature-card:hover .feature-list li {
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d35400, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-card h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    color: #666;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 20px;
    transition: all 0.4s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: bold;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-list li::before {
    color: white;
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(211, 84, 0, 0.05);
    border-radius: 50px;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(211, 84, 0, 0.1);
    transform: translateY(-3px);
}

.trust-badge i {
    color: #d35400;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .trust-badges-container {
        gap: 15px;
        padding: 20px;
    }

    .trust-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .trust-badges-container {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

.section-title {
    font-size: 32px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f76f0c;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 79, 140, 0.15);
    border-color: #f76f0c;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 79, 140, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.product-badge.premium {
    background: linear-gradient(45deg, #ffc107, #ffb300);
}

.product-badge.organic {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.product-content {
    padding: 10px;
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a4f8c;
    margin-bottom: 5px;
}

.product-category {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.spec-item i {
    color: #1a4f8c;
    width: 16px;
}

.product-footer {
    padding-top: 10px;
}

.product-footer .btn {
    width: 60%;
    padding: 4px !important;
    font-weight: 600;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }
}




.section-title span {
    color: #d35400;
}


/* Certificate Slider Styles */
.choose-faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.choose-image {
    position: relative;
}

.choose-image img {
    border-radius: 20px;
}

.highlight-box {
    position: absolute;
    background: white;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1a4f8c;
    transition: all 0.4s ease;
}

.highlight-box i {
    color: #d35400;
    font-size: 1.1rem;
}

.box1 {
    top: 10%;
    left: 5%;
}

.box2 {
    bottom: 20%;
    right: 8%;
}

.box3 {
    top: 50%;
    left: 55%;
}

.highlight-box:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #1a4f8c, #0d3a6b);
    color: #fff;
}

.highlight-box:hover i {
    color: #fff;
}


.faq-container .card {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-container .card-header {
    background: white;
    padding: 0;
}

.faq-container .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #1a4f8c;
    padding: 15px 20px;
    text-decoration: none;
}

.faq-container .btn-link:hover,
.faq-container .btn-link:focus {
    text-decoration: none;
    color: #d35400;
}

.faq-container .collapse.show .card-body {
    border-top: 1px solid #eee;
}

.faq-container .card-body {
    color: #555;
    background: #fff;
    padding: 15px 20px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .highlight-box {
        display: none;
    }
}

#owl_certificate {
    padding: 20px 0;
}

.certificate-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #f67010;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.15);
    border-color: #d35400;
}

.certificate-image {
    width: 120px;
    height: 120px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.certificate-item:hover .certificate-image {
    transform: scale(1.05);
    background: rgba(211, 84, 0, 0.05);
}

.certificate-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-title {
    color: #d35400;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.15);
    border-color: #d35400;
}

.certificate-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.certificate-title {
    color: #d35400;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-prev,
.owl-next {
    width: 40px;
    height: 40px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    color: #d35400 !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    pointer-events: all;
}

.owl-prev:hover,
.owl-next:hover {
    background: #d35400 !important;
    color: white !important;
}



/* Responsive Design */
@media (max-width: 768px) {

    .certificate-slider-container {
        padding: 0 40px;
    }



    .certificate-item {
        padding: 25px 15px;
    }

    .certificate-name {
        font-size: 1.1rem;
    }

    .certificate-title {
        font-size: 0.9rem;
    }

    .certificate-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .certificate-title {
        font-size: 0.9rem;
    }

}

@media (max-width: 576px) {

    .certificate-slider-container {
        padding: 0 20px;
    }

    .certificate-image {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}