body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Login Page Styles */
.login-page {
    background: url('assets/images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 1;
}

.login-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    z-index: 2; /* Above overlay */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.login-card .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid orangered;
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-card .form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 98, 0, 0.5);
    color: #000;
}

.login-card .form-control::placeholder {
    color: #ddd;
}

.login-card .input-group-text {
    background: #FF6200;
    color: #000;
    border: 1px solid orangered;
    border-radius: 8px 0 0 8px;
}

.login-card .btn-gradient {
    background: linear-gradient(135deg, #FF6200, #E55A00); /* Orange to match header */
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.login-card .btn-gradient:hover {
    background: linear-gradient(135deg, #E55A00, #CC4E00);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .login-card {
        margin: 15px;
        padding: 10px;
    }
    .login-card .card-body {
        padding: 2rem;
    }
}

/* Header Styles (updated for orange) */
.orange-header {
    background: linear-gradient(135deg, #FF6200, #E55A00);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #fff;
}

.logo {
    height: 100px;
    margin-right: 10px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFE0B2;
}

.nav-link i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        background: #FF6200;
    }
    .nav-item {
        margin: 10px 0;
    }
    .logo {
        height: 80px;
    }
}

/* Profile Card (unchanged) */
.profile-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header.bg-gradient {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.info-item i {
    color: #28a745;
}

.btn-gradient {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #218838, #1a6b2d);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    transition: width 1s ease-in-out;
    background: linear-gradient(90deg, #28a745, #4CAF50);
}

.bio-section .btn-outline-primary {
    border-radius: 8px;
    border: 2px solid #28a745;
    color: #28a745;
}

.bio-section .btn-outline-primary:hover {
    background: #28a745;
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    .btn-gradient {
        width: 100%;
        margin-bottom: 10px;
    }
    .info-item i {
        font-size: 1.5rem;
    }
}

/* Add to existing CSS */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #FF6200;
    color: #fff;
}



/*update for profile sharing*/
/* Existing styles (orange header, green buttons, etc.) */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Header Styles */
.orange-header {
    background: linear-gradient(135deg, #FF6200, #E55A00);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Profile Card */
.profile-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #218838, #1a6b2d);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Dropdown Styles (for badge and share) */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #FF6200;
    color: #fff;
}

.dropdown-item i {
    margin-right: 8px;
}

/* Font Awesome for social icons */
.fa-linkedin {
    color: #0077B5; /* LinkedIn blue */
}

.fa-x-twitter {
    color: #000; /* X black */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-gradient {
        width: 100%;
        margin-bottom: 10px;
    }
}