﻿:root {
    --primary-color: #0c5c77;
    --secondary-color: #f7a708;
    --accent-color: #ffc107;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #0c5c77;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* full viewport width */
    height: 100vh; /* full viewport height */
    z-index: 0; /* behind page content */
    pointer-events: auto;
}

.page-container {
    position: relative;
    z-index: 1;
    padding: 30px;
    color: #343a40;
}

#stats {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.page-container {
    max-width: 800px;
    margin: 30px auto;
    background-color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.header {
    position: relative;
    background: var(--primary-color);
    background: linear-gradient(135deg, #0C5C77 0%, #001f29 100%);
    color: white;
    padding: 30px;
}

    .header img {
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.section {
    padding: 30px;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

    .section-title i {
        font-size: 24px;
        margin-right: 15px;
        color: var(--secondary-color);
    }

    .section-title h4 {
        margin: 0;
        font-weight: 600;
        color: var(--dark-color);
    }

.download-btn {
    font-size: 15px;
    background-color: var(--light-color);
    border: 1px solid #85989f;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: 0 4px 12px rgba(0, 31, 41, 0.2);
}

    .download-btn:hover {
        background-color: #e9ecef;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        color: var(--primary-color);
    }

    .download-btn i {
        margin-right: 15px;
        font-size: 22px;
        color: #464646;
    }

:root {
    --primary-color: #1a1a2e;
    --accent-color: #e2b13c;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --text-light: #fff;
    --transition: all 0.3s ease;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-color);
    }

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

    .product-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }

.product-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("o_1f677ag4acll1c351p5119g216n0g.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    z-index: 2;
}

.product-content {
    padding: 25px;
    position: relative;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

    .product-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--accent-color);
    }

.product-highlight {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    margin: 15px 0;
}

.product-quality {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    background-color: var(--light-gray);
    display: inline-block;
    border-radius: 20px;
    margin: 10px 0;
}

.product-specs {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.spec-group {
    margin-bottom: 15px;
}

.spec-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

    .spec-title i {
        margin-right: 8px;
        font-size: 16px;
        color: var(--accent-color);
    }

.spec-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

.spec-item {
    padding: 4px 10px;
    background-color: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

    .spec-item:hover {
        background-color: var(--accent-color);
        color: white;
    }

.product-details {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .product-details:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .page-container {
        padding: 0;
    }

    .photo-gallery-card {
        padding: 10px !important;
    }
}

.contact-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

    .contact-bar a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--light-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-color);
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

        .contact-bar a:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

.whatsapp-banner {
    background: linear-gradient(45deg, #25d366 0%, #128C7E 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

    .whatsapp-banner:hover {
        transform: translateY(-3px);
    }

    .whatsapp-banner i {
        font-size: 30px;
        margin-right: 15px;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

    .social-icons a {
        color: var(--dark-color);
        font-size: 24px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--light-color);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        text-decoration : none;
    }

        .social-icons a:hover {
            color: white;
            background-color: var(--primary-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #777;
    margin-top: 15px;
}

    .footer-links span {
        padding: 5px 10px;
        background-color: var(--light-color);
        border-radius: 4px;
        transition: all 0.3s ease;
    }

        .footer-links span:hover {
            background-color: var(--accent-color);
            color: var(--dark-color);
            transform: translateY(-2px);
        }

.card-dark {
    background: linear-gradient(45deg, #343a40 0%, #212529 100%);
    border-radius: 10px;
    padding: 25px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .card-dark:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .card-dark i {
        font-size: 36px;
        margin-bottom: 15px;
        color: var(--accent-color);
    }


    .card-dark h5 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.4;
    }

.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

    .btn-custom:hover {
        background-color: #003d7a;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
        color: white;
    }

.person-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .person-img:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

/* Animation delays for staggered effect */
.section:nth-child(1) {
    animation-delay: 0.1s;
}

.section:nth-child(2) {
    animation-delay: 0.2s;
}

.section:nth-child(3) {
    animation-delay: 0.3s;
}

.section:nth-child(4) {
    animation-delay: 0.4s;
}

.section:nth-child(5) {
    animation-delay: 0.5s;
}

.section:nth-child(6) {
    animation-delay: 0.6s;
}

.section:nth-child(7) {
    animation-delay: 0.7s;
}

/* Visible class for intersection observer */
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 20px;
    }

    .product-card h2 {
        font-size: 22px;
    }

    .header {
        padding: 20px;
    }

    .contact-bar a {
        width: 40px;
        height: 40px;
    }
}

.photo-gallery-card {
    background: linear-gradient(145deg, #1b708c 0%, #001f29 100%);
    border-radius: 12px;
    padding: 30px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .photo-gallery-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.7;
    }

    .photo-gallery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

.card-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

    .card-header i {
        font-size: 40px;
        color: var(--accent-color);
        margin-bottom: 15px;
        display: inline-block;
    }

    .card-header h5 {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

        .card-header h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 3px;
        }

.photo-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    position: relative;
    z-index: 2;
}

.category-btn {
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .category-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--accent-color), transparent);
        opacity: 0;
        transition: var(--transition);
    }

    .category-btn:hover::before,
    .category-btn.active::before {
        opacity: 1;
    }

    .category-btn:hover,
    .category-btn.active {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

    .category-btn i {
        margin-right: 8px;
        font-size: 14px;
    }


@media (max-width: 768px) {

    .category-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 425px) {
    .page-container {
        max-width: 100%;
        margin: 20px 20px;
    }

    .header img {
        width: 70%;
    }

    .lead {
        font-size: 1rem;
        font-weight: 300;
    }

    .product-details {
        width: 20px;
        height: 20px;
    }

    .fas {
        font-size: 10px;
    }
}

.mainlogo {
    width: 200px;
    padding: 15px;
}

.logo-container {
    text-align: center;
}

.smalltext {
    font-size: 10px;
}

.ratio {
    position: relative;
    width: 60% !important;
}

.video-wrapper {
    position: relative;
    width: 450px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px 20px;
}

.header-small-title {
    border: 1px solid #e2b13c;
    padding: 10px;
    border-radius: 15px;
    font-size: 12px;
}

@media (max-width: 425px) {
    .title-flex-dire {
        flex-direction: column !important;
        gap: 10px;
    }

    .section-title {
        margin-bottom: 1px
    }

    .product-content {
        padding: 15px;
    }

    .play-button {
        font-size: 15px;
    }
}

.spec-content a {
    text-decoration: none;
    color: var(--primary-color);
}

.spec-item a {
    text-decoration: none;
    color: var(--primary-color);
}

.footer-text-color {
    color: #e2b13c;
}
