* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
			font-family: 'Urbanist', sans-serif;
            min-height: 100dvh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #1a1a1a;
            color: #fff;
        }
        .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
			overflow: hidden !important;
        }
        .bg-container .bg-img {
            width: 100%;
            height: 100%;
			background-image: url("images/dent-bg.webp");
			background-size: cover;
			background-position: center center;
            filter: brightness(0.4);
			animation: zoomInOut 30s ease-in-out infinite;
			will-change: transform;
        }
		
		@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
		
        .card-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 40px 30px;
            border-radius: 20px;
            width: 90%;
            max-width: 450px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            animation: fadeIn 1s ease-out;
         
        }
        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            letter-spacing: 1px;
            font-weight: 600;
        }
        h2 {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 25px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #333;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .link-btn i {
            position: absolute;
            left: 20px;
            font-size: 1.2rem;
            color: #6B7C67;
        }
        .link-btn:hover {
            transform: translateY(-3px);
            background: #fff;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }
        .btn-primary {
            background: #6B7C67;
            color: #fff;
        }
        .btn-primary i { color: #fff; }
        .btn-primary:hover { background: #6B7C67; }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .social-link {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.5rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .social-link:hover {
            color: #fff;
            transform: scale(1.2);
        }
        .footer {
            margin-top: 30px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
			overflow: hidden;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }
		
		.fys-box{
			display: flex;
			justify-content: center;
			max-width: 450px;
		}
		
		.fys-box img {
			width: 80%;
			max-width: 300px;
			margin: 35px auto 0px;
		}

         .ft-mail {
            padding-top: 5px;  
        }
		
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 480px) {
            .card-container {
                width: 95%;
                padding: 30px 20px;
            }
            h1 { font-size: 1.5rem; }
            .link-btn { padding: 12px; font-size: 0.9rem; }
        }