 :root {
            --primary-color: #FA5C5C;    
            --secondary-color: #FD8A6B;  
            --text-color: #2c2c2c;       
            --light-bg: #fff7ef;         
        }
   
            

        /* --- OWNER CARD STYLES --- */
        .owner-card {
            background: #fff;
            width: 350px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: 0.3s;
            position: relative;
            border-bottom: 5px solid var(--primary-color);
        }

        .owner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(250, 92, 92, 0.2); /* Reddish shadow on hover */
        }

        /* Colored Header */
        .card-header-bg {
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        /* Owner Image */
        .owner-img-container {
            width: 130px;
            height: 130px;
            margin: -65px auto 15px; /* Pull image up */
            border-radius: 50%;
            padding: 5px;
            background: #fff; /* White border effect */
            position: relative;
        }

        .owner-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        /* Content */
        .card-body {
            padding: 0 25px 30px;
        }

        .owner-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .owner-role {
            font-size: 0.9rem;
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .info-item i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* Social Icons (Optional) */
        .social-links {
            margin-top: 20px;
        }
        .social-links a {
            display: inline-flex;
            width: 35px;
            height: 35px;
            background: #f4f4f4;
            color: var(--text-color);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin: 0 5px;
            transition: 0.3s;
        }
        .social-links a:hover {
            background: var(--primary-color);
            color: #fff;
        }