*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* Background Image */
.bg{
    position: fixed;
    inset: 0;
    background: url('../images/kkfoods-image.jpg') no-repeat center center/cover;
    z-index: -2;
}

/* Dark Overlay */
.bg::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

/* Glassmorphism Card */
.card{
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 700px;
    padding: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: float 4s ease-in-out infinite;
}

@keyframes float{
    50%{
        transform: translateY(-10px);
    }
}

.logo{
    margin-bottom: 20px;
}

.logo img{
    max-width: 180px;
    width: 100%;
    height: 37px;
}

h1{
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

p{
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Contact Button */
.btn{
    display: inline-block;
    margin: 25px 0;
    padding: 14px 30px;
    background: rgb(0 0 0 / 45%);;
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
}



/* Contact Details */
/* Contact Details */
.contact{
    margin-top: 15px;
}

.contact-link{
    display: block;
    text-decoration: none;
    color: #fff;
}

.contact-link p{
    margin: 12px 0;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-link i{
    margin-right: 8px;
    /* color: #0d6efd; */
}

/* .contact-link:hover p{
    color: #0d6efd;
} */

/* Social Icons */
.social{
    margin-top: 20px;
}

.social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* .social a:hover{
    background: #fff;
    color: #0d6efd;
    transform: translateY(-5px);
} */

/* Responsive */
@media (max-width: 768px){

    .card{
        padding: 30px 25px;
    }

    h1{
        font-size: 32px;
    }

    .logo img{
        max-width: 140px;
    }

    .contact p{
        font-size: 14px;
    }

    .social a{
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 6px;
    }
}

.kkfoods{
    font-size: 24px;
    font-weight: bold;
}