 /* Chatbot Button */
    #chatbot-btn {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #007bff;
      color: #fff;
      border: none;
      font-size: 24px;
      cursor: pointer;
      z-index: 1000;
    }
    #chatbot-panel {
      position: fixed;
      bottom: 90px;
      left: 20px;
      width: 250px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      display: none;
      z-index: 1000;
    }
    #chatbot-panel .option {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
    }
    #chatbot-panel .option:last-child { border-bottom: none; }
    #chatbot-panel .option:hover { background: #f1f1f1; }
    #chatbot-content {
      padding: 10px;
      font-size: 14px;
      display: none;
    }
    
    
        /* Sticky Social Header */
        .social-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #f8f9fa;
            padding: 5px 0;
            border-bottom: 1px solid #ddd;
        }
        .social-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
        }
        .social-left, .social-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .social-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            text-align: center;
            font-size: 14px;
        }
        .social-item i {
            font-size: 20px;
            margin-bottom: 3px;
        }
        .blink-text {
            animation: blink 1s infinite alternate;
        }
        @keyframes blink {
            0% { opacity: 1; }
            100% { opacity: 0.5; }
        }
        /* Custom Job Card Styles */
        .job-card {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #fff;
            position: relative;
            overflow: hidden;
            height: 100%;
            cursor: pointer;
        }
        .more-details-link {
            display: inline-block;
            word-break: break-word;
            max-width: 100%;
        }
        /* Search Box Style */
        .search-box {
            max-width: 500px;
        }
        .input-group {
            border-radius: 50px;
            overflow: hidden;
        }
        .form-control {
            border: none;
            border-radius: 0;
            box-shadow: none;
        }
        .input-group-text {
            background: #fff;
            border: none;
            border-radius: 0;
        }
        .btn-clear {
            border: none;
            background: #fff;
        }
        /* Profile Dropdown Styles */
        .profile-dropdown .dropdown-toggle {
            border: none;
            background: transparent;
            font-size: 1.2rem; /* slightly smaller icon */
        }
        .profile-dropdown .dropdown-item-text {
            font-size: 0.8rem; /* smaller text for the student name */
        }
        /* Scroll-to-Top Button */
        .scroll-top-btn {
            display: none; /* Hidden by default */
            position: fixed;
            bottom: 50px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s ease-in-out;
        }
        .scroll-top-btn:hover {
            background: #0056b3;
        }
        /* Vacancy Type Filter Styles (Admin Only) */
        .vacancy-filter {
            margin-bottom: 15px;
        }
        .vacancy-filter label {
            font-weight: bold;
            margin-right: 10px;
        }
       
        /* Main Header */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 12px 0;
        }
        .login-btns {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .login-btns a {
            white-space: nowrap;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            /* Social media mobile adjustments */
            .top-social-nav .social-item {
                padding: 4px 6px;
                font-size: 12px;
            }
            .top-social-nav .social-item span {
                display: inline !important; /* Force show text on mobile */
            }

            /* Login buttons mobile adjustments */
            .login-btns {
                gap: 5px;
            }
            .login-btns a {
                padding: 5px 8px;
                font-size: 12px;
            }
            .login-btns a i {
                margin-right: 3px !important;
            }
        }

        @media (max-width: 480px) {
            .top-social-nav .social-item {
                font-size: 11px;
                padding: 4px;
            }
            .login-btns a {
                font-size: 11px;
                padding: 4px 6px;
            }
        }
        
        /*New CSS*/
         /* New Footer Styles */
        .main-footer {
            background: #2d2d2d;
            color: #ffffff;
            padding: 40px 0 20px;
        }
        .footer-logo {
            width: 120px;
            margin-bottom: 20px;
        }
        .footer-section h5 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .footer-links a {
            color: #bdbdbd;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            color: #fff;
            font-size: 24px;
            transition: opacity 0.3s ease;
        }
        .social-links a:hover {
            opacity: 0.8;
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #bdbdbd;
            font-size: 12px;
        }

        @media (max-width: 768px) {
    .main-footer .row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-logo {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
}
        /*End New CSS*/