::selection {
    background: #D62828;
    color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #D62828;
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}


/*==================================================
    PLUSTEK COMING SOON
==================================================*/
:root {
    --primary: #D62828;
    --secondary: #F28C28;
    --dark: #222222;
    --text: #5f5f5f;
    --white: #ffffff;
    --bg: #fbf7f1;
    --border: #ece4d9;
    --radius: 20px;
    --transition: .35s ease;
}

/*==================================================
    RESET
==================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
}

/*==================================================
    ANIMATED BACKGROUND
==================================================*/
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(circle at top left, #fff4d9 0%, transparent 35%),
        radial-gradient(circle at bottom right, #ffe7dc 0%, transparent 40%),
        linear-gradient(135deg, #fbf7f1, #fffefb);
}

.bg-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
    z-index: -4;
}

.bg-circle.one {
    width: 420px;
    height: 420px;
    background: #ffd2c7;
    top: -120px;
    left: -80px;
}

.bg-circle.two {
    width: 320px;
    height: 320px;
    background: #ffe6b5;
    bottom: -80px;
    right: -60px;
}

.bg-circle.three {
    width: 250px;
    height: 250px;
    background: #ffd4b6;
    top: 45%;
    left: 45%;
}

/*==================================================
    HEADER
==================================================*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 28px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

/*==================================================
    HERO
==================================================*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
}

.hero-content {
    max-width: 620px;
}

.coming-tag {
    display: inline-block;
    background: #ffffff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
}

.hero h3 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 45px;
}

/*==================================================
    NOTIFY FORM
==================================================*/
.notify-box {
    margin-bottom: 45px;
}

.notify-box form {
    display: flex;
    background: #fff;
    border-radius: 70px;
    overflow: hidden;
    padding: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.notify-box input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    padding: 18px 22px;
    font-size: 15px;
}

.notify-box button {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 18px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: var(--transition);
}

.notify-box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(214, 40, 40, .35);
}

/*==================================================
    CONTACT
==================================================*/
.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.contact-list div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list i {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.contact-list span {
    color: var(--dark);
    font-weight: 500;
}

/*==================================================
    HERO IMAGE
==================================================*/
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img {
    width: 100%;
    max-width: 560px;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .18));
    user-select: none;
    pointer-events: none;
}

/*==================================================
    FLOATING PRODUCT IMAGE
==================================================*/
.hero-image {
    position: relative;
    min-height: 650px;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(214, 40, 40, .10),
            rgba(242, 140, 40, .12));
    z-index: -1;
    animation: rotateBlob 16s linear infinite;
}

.product-img {
    position: relative;
    z-index: 2;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateBlob {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*==================================================
    HONEYCOMB BACKGROUND
==================================================*/
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: .05;
    background-image: url("https://www.transparenttextures.com/patterns/hexellence.png");
    pointer-events: none;
}

/*==================================================
    FEATURES
==================================================*/
.features {
    padding: 100px 0;
}

.feature-box {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 24px;
    padding: 45px;
    transition: .4s;
    height: 100%;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .05);
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, .10);
}

.feature-box i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 22px;
}

.feature-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/*==================================================
    FOOTER
==================================================*/
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
}

footer p {
    margin: 0;
    color: #777;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    color: var(--primary);
    font-size: 20px;
    transition: .35s;
}

.social-icons a:hover {
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: #fff;
    transform: translateY(-6px);
}

/*==================================================
    PREMIUM BUTTON EFFECT
==================================================*/
.notify-box button {
    position: relative;
    overflow: hidden;
}

.notify-box button::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .7s;
}

.notify-box button:hover::before {
    left: 130%;
}

/*==================================================
    SCROLL INDICATOR
==================================================*/
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/*==================================================
    RESPONSIVE
==================================================*/
@media(max-width:1199px) {
    .hero h1 {
        font-size: 70px;
    }

    .hero h3 {
        font-size: 24px;
    }

    .product-img {
        max-width: 470px;
    }
}

@media(max-width:991px) {
    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto 70px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero h3 {
        font-size: 22px;
    }

    .contact-list {
        justify-content: center;
    }

    .notify-box form {
        flex-direction: column;
        border-radius: 24px;
        gap: 12px;
    }

    .notify-box input {
        width: 100%;
    }

    .notify-box button {
        width: 100%;
        border-radius: 16px;
    }

    .hero-image {
        min-height: auto;
    }

    .social-icons {
        justify-content: center;
        margin-top: 25px;
    }

    footer {
        text-align: center;
    }
}

@media(max-width:767px) {
    .logo img {
        height: 55px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero h3 {
        font-size: 20px;
    }

    .hero p {
        font-size: 15px;
    }

    .coming-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .feature-box {
        padding: 30px;
    }

    .product-img {
        max-width: 320px;
    }

    .contact-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero h3 {
        font-size: 18px;
    }

    .notify-box input {
        padding: 15px;
    }

    .notify-box button {
        padding: 16px;
    }

    .product-img {
        max-width: 270px;
    }

    .feature-box {
        border-radius: 18px;
    }
}

/*=========================================
NOISE TEXTURE
=========================================*/
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .05;
    z-index: -2;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
}

/*=========================================
CURSOR GLOW
=========================================*/
.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(214, 40, 40, .18),
            transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/*=========================================
PARTICLES
=========================================*/
.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(214, 40, 40, .15);
    animation: particleMove linear infinite;
}

.particles span:nth-child(1) {
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    left: 20%;
    animation-duration: 16s;
    animation-delay: 2s;
}

.particles span:nth-child(3) {
    left: 35%;
    animation-duration: 14s;
}

.particles span:nth-child(4) {
    left: 50%;
    animation-duration: 18s;
}

.particles span:nth-child(5) {
    left: 65%;
    animation-duration: 13s;
}

.particles span:nth-child(6) {
    left: 78%;
    animation-duration: 17s;
}

.particles span:nth-child(7) {
    left: 90%;
    animation-duration: 15s;
}

.particles span:nth-child(8) {
    left: 95%;
    animation-duration: 20s;
}

@keyframes particleMove {
    0% {
        transform: translateY(110vh) scale(.4);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/*=========================================
PRODUCT SHINE
=========================================*/
.hero-image {
    overflow: hidden;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 35%;
    height: 220%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .65),
            transparent);
    transform: rotate(20deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        left: -80%;
    }

    100% {
        left: 160%;
    }
}

/*=========================================
BUTTON GLOW
=========================================*/
.notify-box button {
    box-shadow:
        0 0 0 rgba(214, 40, 40, .35);
    animation: buttonGlow 2.5s infinite;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 40, 40, .35);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(214, 40, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
    }
}

/*=========================================
PREMIUM FEATURE HOVER
=========================================*/
.feature-box {
    overflow: hidden;
    position: relative;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .5),
            transparent);
    transition: 1s;
}

.feature-box:hover::before {
    left: 150%;
}

/*=========================================
SOCIAL HOVER
=========================================*/
.social-icons a {
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    opacity: 0;
    transition: .35s;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}

/*=========================================
ABOUT SECTION
=========================================*/
.about-company {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.about-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-content p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #D62828;
    color: #fff;
    padding: 30px;
    border-radius: 25px;
    width: 220px;
    text-align: center;
}

.experience-box h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.about-list div {
    font-weight: 500;
    display: flex;
    gap: 12px;
    align-items: center;
}

.about-list i {
    color: #D62828;
}

/*=========================================
CONTACT STRIP
=========================================*/
.contact-strip {
    padding: 0 0 90px 0;
}

.contact-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.contact-card div {
    text-align: center;
}

.contact-card i {
    font-size: 40px;
    color: #D62828;
    margin-bottom: 20px;
}

.contact-card h5 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card p {
    margin: 0;
    color: #666;
}

/*=========================================
RESPONSIVE
=========================================*/
@media(max-width:991px) {
    .about-content {
        margin-top: 60px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 25px;
        width: 100%;
    }
}

.loader {
    position: fixed;
    inset: 0;
    background: #fbf7f1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader img {
    width: 170px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
    }
}