/* =========================================
   GLOBAL WEBSITE FONT
========================================= */

html,
body,
button,
input,
select,
textarea {
    font-family: sans-serif !important;
}


/* =========================================
   GLOBAL PARAGRAPH SIZE
========================================= */

p {
    font-size: 14px !important;
}
.premium-product-card {
    position: relative;
    border: 1px solid rgba(0, 159, 227, 0.10);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 10px 30px rgba(7, 10, 34, 0.05),
        0 2px 6px rgba(7, 10, 34, 0.03);

    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        box-shadow .5s ease,
        border-color .5s ease;
}

.premium-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;

    background: linear-gradient(
        135deg,
        transparent 20%,
        rgba(0, 174, 239, .45),
        transparent 70%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;

    z-index: 10;
}

.premium-product-card:hover {
    transform: translateY(-12px);

    border-color: rgba(0, 159, 227, .25);

    box-shadow:
        0 30px 70px rgba(7, 10, 34, .12),
        0 15px 35px rgba(0, 159, 227, .15);
}

.premium-product-card:hover::before {
    opacity: 1;
}


/* Scroll reveal */
.product-reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.product-reveal.product-show {
    opacity: 1;
    transform: translateY(0);
}


/* Mobile */
@media (max-width: 640px) {

    .premium-product-card {
        border-radius: 16px;
    }

    .premium-product-card::before {
        border-radius: 16px;
    }

}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .premium-product-card,
    .premium-product-card *,
    .product-reveal {
        transition: none !important;
        transform: none !important;
    }

    .product-reveal {
        opacity: 1;
    }

}

.about-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.about-reveal.about-show {
    opacity: 1;
    transform: translateY(0);
}

.floating-stat {
    animation: floatStat 4s ease-in-out infinite;
}

.floating-delay {
    animation-delay: .7s;
}

.floating-delay-2 {
    animation-delay: 1.4s;
}

.floating-delay-3 {
    animation-delay: 2.1s;
}

@keyframes floatStat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal {
        opacity: 1;
        transform: none;
    }

    .floating-stat {
        animation: none;
    }
}


.industry-card {
    position: relative;
    overflow: hidden;
    min-height: 216px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );
    backdrop-filter: blur(12px);
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        background .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


.industry-card::before {
    content: '';

    position: absolute;
    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    background: #00AEEF;

    border-radius: 50%;

    filter: blur(45px);

    opacity: 0;

    transition:
        opacity .5s ease,
        transform .5s ease;
}


.industry-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0,174,239,.45);

    background:
        linear-gradient(
            145deg,
            rgba(0,174,239,.16),
            rgba(255,255,255,.04)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}


.industry-card:hover::before {
    opacity: .30;
    transform: scale(1.3);
}


.industry-icon {
    position: relative;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(0,174,239,.12);

    border: 1px solid rgba(0,174,239,.25);

    color: #00AEEF;

    font-size: 21px;

    margin-bottom: 22px;

    transition: all .4s ease;
}


.industry-card:hover .industry-icon {
    background: #00AEEF;
    color: #fff;

    transform: rotate(-7deg) scale(1.08);
}


.industry-title {
    position: relative;

    color: #fff;

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 10px;
}


.industry-text {
    position: relative;

    color: rgba(255,255,255,.58);

    font-size: 13px;
    line-height: 1.7;
}


.industry-number {
    position: absolute;

    right: 20px;
    top: 17px;

    font-size: 34px;
    font-weight: 800;

    color: rgba(255,255,255,.05);

    transition: color .4s ease;
}


.industry-card:hover .industry-number {
    color: rgba(0,174,239,.16);
}


/* Scroll animation */

.industry-reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
}


.industry-reveal.industry-show {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 640px) {

    .industry-card {
        padding: 20px 16px;
        min-height: 190px;
    }

    .industry-icon {
        width: 46px;
        height: 46px;

        font-size: 17px;

        margin-bottom: 16px;
    }

    .industry-title {
        font-size: 15px;
    }

    .industry-text {
        font-size: 11px;
    }

    .industry-number {
        font-size: 26px;
        right: 12px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .industry-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .industry-card,
    .industry-card * {
        transition: none !important;
    }

}

.product-description p {
    margin-bottom: 14px;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4,
.product-description h5,
.product-description h6 {
    color: #07142f;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-description h2 {
    font-size: 20px;
}

.product-description h3 {
    font-size: 17px;
}

.product-description h4 {
    font-size: 15px;
}

.product-description ul {
    list-style: disc;
    padding-left: 22px;
    margin: 12px 0;
}

.product-description ol {
    list-style: decimal;
    padding-left: 22px;
    margin: 12px 0;
}

.product-description li {
    margin-bottom: 6px;
}

.product-description strong,
.product-description b {
    color: #07142f;
    font-weight: 700;
}

.product-description a {
    color: #009FE3;
    text-decoration: underline;
}

.product-description table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-description table th,
.product-description table td {
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    text-align: left;
}

.product-description table th {
    background: #F0FAFF;
    color: #07142f;
    font-weight: 700;
}

    .iti {
        width: 100%;
    }

    .iti__country-container {
        z-index: 20;
    }

    .iti__selected-country {
        padding-left: 12px;
    }

    .iti__tel-input {
        padding-left: 95px !important;
    }

    .iti__dropdown-content {
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 15px 35px rgba(7, 20, 47, .12);
    }



